Cosmetic fix.
authorLaurent Monin <geeqie@norz.org>
Mon, 8 Dec 2008 21:33:14 +0000 (21:33 +0000)
committerLaurent Monin <geeqie@norz.org>
Mon, 8 Dec 2008 21:33:14 +0000 (21:33 +0000)
src/ui_fileops.c

index de4514c..7324c34 100644 (file)
@@ -329,14 +329,14 @@ gint isdir(const gchar *s)
 {
        struct stat st;
 
-       return (stat_utf8(s ,&st) && S_ISDIR(st.st_mode));
+       return (stat_utf8(s&st) && S_ISDIR(st.st_mode));
 }
 
 gint islink(const gchar *s)
 {
        struct stat st;
 
-       return (lstat_utf8(s ,&st) && S_ISLNK(st.st_mode));
+       return (lstat_utf8(s&st) && S_ISLNK(st.st_mode));
 }
 
 gint64 filesize(const gchar *s)