[glib] Avoid a C99ism
- From: Matthias Clasen <matthiasc src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [glib] Avoid a C99ism
- Date: Wed, 30 Sep 2009 00:48:12 +0000 (UTC)
commit 2f93bea177a980b8ae750c07f3b269c9bea7ac25
Author: Matthias Clasen <mclasen redhat com>
Date: Tue Sep 29 20:45:26 2009 -0400
Avoid a C99ism
Move a variable declaration to the beginning of the block; see
bug 596561. Also remove a pointless register declaration.
glib/gmessages.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/glib/gmessages.c b/glib/gmessages.c
index 0f4bf42..9a3eec3 100644
--- a/glib/gmessages.c
+++ b/glib/gmessages.c
@@ -435,11 +435,11 @@ g_logv (const gchar *log_domain,
log_level &= G_LOG_LEVEL_MASK;
if (!log_level)
return;
-
+
for (i = g_bit_nth_msf (log_level, -1); i >= 0; i = g_bit_nth_msf (log_level, i))
{
register GLogLevelFlags test_level;
-
+
test_level = 1 << i;
if (log_level & test_level)
{
@@ -448,6 +448,7 @@ g_logv (const gchar *log_domain,
GLogFunc log_func;
GLogLevelFlags domain_fatal_mask;
gpointer data = NULL;
+ gboolean masquerade_fatal = FALSE;
if (was_fatal)
test_level |= G_LOG_FLAG_FATAL;
@@ -491,7 +492,6 @@ g_logv (const gchar *log_domain,
}
}
- gboolean masquerade_fatal = FALSE;
if (test_level & G_LOG_FLAG_RECURSION)
{
/* we use a stack buffer of fixed size, since we're likely
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]