summaryrefslogtreecommitdiffstats
path: root/src/mot-encoder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mot-encoder.cpp')
-rw-r--r--src/mot-encoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mot-encoder.cpp b/src/mot-encoder.cpp
index e227412..cc451e6 100644
--- a/src/mot-encoder.cpp
+++ b/src/mot-encoder.cpp
@@ -218,7 +218,7 @@ int main(int argc, char *argv[])
while(1) {
pDir = opendir(dir);
if (pDir == NULL) {
- printf ("Cannot open directory '%s'\n", dir);
+ fprintf(stderr, "Cannot open directory '%s'\n", dir);
return 1;
}
if (fidx == 9999) {
@@ -226,7 +226,7 @@ int main(int argc, char *argv[])
}
while ((pDirent = readdir(pDir)) != NULL) {
- if (pDirent->d_name[0] != '.') {
+ if (pDirent->d_type != DT_UNKNOWN && pDirent->d_name[0] != '.') {
sprintf(imagepath, "%s/%s", dir, pDirent->d_name);
ret = encodeFile(output_fd, imagepath, fidx, padlen);
if (ret != 1) {