summaryrefslogtreecommitdiff
path: root/src/gallery-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallery-utils.c')
-rw-r--r--src/gallery-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallery-utils.c b/src/gallery-utils.c
index 403b3c6..88a1fb3 100644
--- a/src/gallery-utils.c
+++ b/src/gallery-utils.c
@@ -138,7 +138,7 @@ copy_file (const gchar *src, const gchar *dst)
FILE *fin;
FILE *fout;
void *buffer;
- int size_r;
+ size_t size_r;
struct stat st;
struct utimbuf ut;
size_t written;
@@ -361,7 +361,7 @@ remove_tags (gchar **str, const gchar *tag_begin, const gchar *tag_end)
int
count_dir_levels (const gchar *path)
{
- int i;
+ guint i;
int level;
if (path == NULL || strlen (path) == 0)