diff options
-rw-r--r-- | tools/ck-history.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ck-history.c b/tools/ck-history.c index 85d9e6f..0e89d78 100644 --- a/tools/ck-history.c +++ b/tools/ck-history.c @@ -76,7 +76,7 @@ parse_event_line (const char *line) } static gboolean -process_log_gzstream (gzFile *fstream, +process_log_gzstream (gzFile fstream, GTimeVal *since) { char line[MAX_LINE_LEN]; @@ -150,7 +150,7 @@ process_log_file (const char *filename, gboolean ret; if (g_str_has_suffix (filename, ".gz")) { - gzFile *f; + gzFile f; f = gzopen (filename, "r"); if (f == NULL) { int errnum; |