From 0f85e10368e53bfc0a2309cc35e579460ce7e3fb Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Wed, 5 Jun 2019 15:11:24 -0700 Subject: [PATCH] style cleanup --- src/libsysprof-capture/sysprof-capture-writer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libsysprof-capture/sysprof-capture-writer.c b/src/libsysprof-capture/sysprof-capture-writer.c index 477465ae..5d8a5fb7 100644 --- a/src/libsysprof-capture/sysprof-capture-writer.c +++ b/src/libsysprof-capture/sysprof-capture-writer.c @@ -878,9 +878,9 @@ sysprof_capture_writer_flush (SysprofCaptureWriter *self) { g_assert (self != NULL); - return (sysprof_capture_writer_flush_jitmap (self) && - sysprof_capture_writer_flush_data (self) && - sysprof_capture_writer_flush_end_time (self)); + return sysprof_capture_writer_flush_jitmap (self) && + sysprof_capture_writer_flush_data (self) && + sysprof_capture_writer_flush_end_time (self); } /**