whitespace

This commit is contained in:
Christian Hergert
2019-05-24 14:33:45 -07:00
parent 7bba7a4dff
commit 385ece7c41

View File

@ -189,11 +189,10 @@ static void
sysprof_gjs_source_start (SysprofSource *source) sysprof_gjs_source_start (SysprofSource *source)
{ {
SysprofGjsSource *self = (SysprofGjsSource *)source; SysprofGjsSource *self = (SysprofGjsSource *)source;
guint i;
g_assert (SYSPROF_IS_GJS_SOURCE (self)); g_assert (SYSPROF_IS_GJS_SOURCE (self));
for (i = 0; i < self->pids->len; i++) for (guint i = 0; i < self->pids->len; i++)
{ {
GPid pid = g_array_index (self->pids, GPid, i); GPid pid = g_array_index (self->pids, GPid, i);
@ -206,11 +205,10 @@ static void
sysprof_gjs_source_stop (SysprofSource *source) sysprof_gjs_source_stop (SysprofSource *source)
{ {
SysprofGjsSource *self = (SysprofGjsSource *)source; SysprofGjsSource *self = (SysprofGjsSource *)source;
guint i;
g_assert (SYSPROF_IS_GJS_SOURCE (self)); g_assert (SYSPROF_IS_GJS_SOURCE (self));
for (i = 0; i < self->pids->len; i++) for (guint i = 0; i < self->pids->len; i++)
{ {
GPid pid = g_array_index (self->pids, GPid, i); GPid pid = g_array_index (self->pids, GPid, i);