mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
whitespace
This commit is contained in:
@ -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);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user