# HG changeset patch # User zas_ # Date 1219510859 0 # Node ID 5049449ad84119f5d9dadff3acbf0b07d8d7fdb6 # Parent 021c4eda0736ef48c81b1ab05a7506a4bc5226ba Remove unneeded type casting. diff -r 021c4eda0736 -r 5049449ad841 src/ui_fileops.c --- a/src/ui_fileops.c Sat Aug 23 08:42:12 2008 +0000 +++ b/src/ui_fileops.c Sat Aug 23 17:00:59 2008 +0000 @@ -243,7 +243,7 @@ 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)