From: Colin Guthrie Date: Wed, 6 Oct 2010 08:16:16 +0000 (+0100) Subject: augment-properties: Fix debug messages and statement bracketing. X-Git-Tag: 1.0_branch~865 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e442f4e0e6937c72997a9b9b66bf931b141ed0a;p=profile%2Fivi%2Fpulseaudio.git augment-properties: Fix debug messages and statement bracketing. --- diff --git a/src/modules/module-augment-properties.c b/src/modules/module-augment-properties.c index f80c9ce..30df69d 100644 --- a/src/modules/module-augment-properties.c +++ b/src/modules/module-augment-properties.c @@ -207,14 +207,15 @@ static void update_rule(struct rule *r) { return; } - if (r->good) + if (r->good) { if (st.st_mtime == r->mtime) { /* Theoretically the filename could have changed, but if so having the same mtime is very unlikely so not worth tracking it in r */ pa_xfree(fn); return; } - else + pa_log_debug("Found %s (which has been updated since we last checked).", fn); + } else pa_log_debug("Found %s.", fn); r->good = TRUE;