shell: Fix signed-unsigned comparisons
This commit is contained in:
@ -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, "[ ");
|
||||
|
Reference in New Issue
Block a user