diff options
-rw-r--r-- | plugins/datetime/system-timezone.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/datetime/system-timezone.c b/plugins/datetime/system-timezone.c index acad071..1062334 100644 --- a/plugins/datetime/system-timezone.c +++ b/plugins/datetime/system-timezone.c @@ -860,7 +860,6 @@ system_timezone_is_zone_file_valid (const char *zone_file, { GError *our_error; GIOChannel *channel; - GIOStatus status; char buffer[strlen (TZ_MAGIC)]; gsize read; @@ -887,9 +886,9 @@ system_timezone_is_zone_file_valid (const char *zone_file, our_error = NULL; channel = g_io_channel_new_file (zone_file, "r", &our_error); if (!our_error) - status = g_io_channel_read_chars (channel, - buffer, strlen (TZ_MAGIC), - &read, &our_error); + g_io_channel_read_chars (channel, + buffer, strlen (TZ_MAGIC), + &read, &our_error); if (channel) g_io_channel_unref (channel); |