Skip to content

Commit

Permalink
Cosmetic fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Monin committed Dec 8, 2008
1 parent bb2f085 commit 2d44c55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui_fileops.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2d44c55

Please sign in to comment.