From: Simon McVittie Date: Wed, 10 Oct 2007 12:37:00 +0000 (+0100) Subject: dbus-launch: convert C++-style comment to C-style, add {} for clarity X-Git-Tag: dbus-1.1.3~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=35b00e3ab25d43c0b513e21a993ce063ea19cc18;p=platform%2Fupstream%2Fdbus.git dbus-launch: convert C++-style comment to C-style, add {} for clarity --- diff --git a/tools/dbus-launch.c b/tools/dbus-launch.c index 80d885f..9f4c94a 100644 --- a/tools/dbus-launch.c +++ b/tools/dbus-launch.c @@ -614,8 +614,10 @@ do_close_stderr (void) close (2); if (dup2 (fd, 2) == -1) - // error; we can't report an error anymore... - exit (1); + { + /* error; we can't report an error anymore... */ + exit (1); + } close (fd); }