comparison src/ui_fileops.c @ 704:839525c4e85f

Use size_t instead of gint, it silents a signed vs unsigned warning.
author zas_
date Tue, 20 May 2008 22:13:48 +0000
parents 911e3769b60c
children 362c9a769bb7
comparison
equal deleted inserted replaced
703:911e3769b60c 704:839525c4e85f
396 { 396 {
397 FILE *fi = NULL; 397 FILE *fi = NULL;
398 FILE *fo = NULL; 398 FILE *fo = NULL;
399 gchar *sl, *tl; 399 gchar *sl, *tl;
400 gchar buf[4096]; 400 gchar buf[4096];
401 gint b; 401 size_t b;
402 402
403 sl = path_from_utf8(s); 403 sl = path_from_utf8(s);
404 tl = path_from_utf8(t); 404 tl = path_from_utf8(t);
405 405
406 if (hard_linked(sl, tl)) 406 if (hard_linked(sl, tl))