Skip to content

Commit

Permalink
Remove unneeded type casting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Monin committed Aug 23, 2008
1 parent 50483da commit 060c2f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui_fileops.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ gint64 filesize(const gchar *s)
struct stat st;

if (!stat_utf8(s, &st)) return 0;
return (gint)st.st_size;
return st.st_size;
}

time_t filetime(const gchar *s)
Expand Down

0 comments on commit 060c2f9

Please sign in to comment.