shell: Fix signed-unsigned comparisons

This commit is contained in:
Florian Müllner
2015-09-23 19:11:05 +02:00
parent 52995416fd
commit 825146f1e3
3 changed files with 5 additions and 5 deletions

View File

@ -626,7 +626,7 @@ shell_perf_log_collect_statistics (ShellPerfLog *perf_log)
{
gint64 event_time = get_time ();
gint64 collection_time;
int i;
guint i;
if (!perf_log->enabled)
return;
@ -819,7 +819,7 @@ shell_perf_log_dump_events (ShellPerfLog *perf_log,
GError **error)
{
GString *output;
int i;
guint i;
output = g_string_new (NULL);
g_string_append (output, "[ ");