diff options
author | Ryuan Choi <ryuan.choi@gmail.com> | 2013-11-25 19:21:52 +0900 |
---|---|---|
committer | Ryuan Choi <ryuan.choi@gmail.com> | 2013-11-25 19:21:52 +0900 |
commit | 2f322e127362def372ee38a9ac0fb71d81a398cf (patch) | |
tree | a470c6ffbbdd760356daaaf06563c096e3f66b49 | |
parent | 445f2eb20680ca1bf50c9182ea06dbb7f54c2ca3 (diff) |
ecore_file: Print more informative message when inotify_add_watch was failed.
inotify_add_watch can be failed because of several reasons.
-rw-r--r-- | src/lib/ecore_file/ecore_file_monitor_inotify.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/ecore_file/ecore_file_monitor_inotify.c b/src/lib/ecore_file/ecore_file_monitor_inotify.c index b01a4357b..bd78f92c5 100644 --- a/src/lib/ecore_file/ecore_file_monitor_inotify.c +++ b/src/lib/ecore_file/ecore_file_monitor_inotify.c @@ -2,6 +2,7 @@ # include <config.h> #endif +#include <errno.h> #include <stdlib.h> #include <stdio.h> #include <string.h> @@ -294,7 +295,7 @@ _ecore_file_monitor_inotify_monitor(Ecore_File_Monitor *em, const char *path) inotify_add_watch(ecore_main_fd_handler_fd_get(_fdh), path, mask); if (ECORE_FILE_MONITOR_INOTIFY(em)->wd < 0) { - INF("inotify_add_watch failed, file was deleted"); + INF("inotify_add_watch failed, %s", strerror(errno)); ecore_file_monitor_backend_del(em); return 0; } |