aboutsummaryrefslogtreecommitdiffstats
path: root/udev.c
diff options
context:
space:
mode:
authorchristophe@saout.de <christophe@saout.de>2004-01-10 00:54:33 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:13:14 -0700
commitc53735efc9720b28676c1b51fbed04dc592236e8 (patch)
tree68bec89222d69f82ed74a9dd27bf508fd20457eb /udev.c
parenta05b77509e6e3723f3e969eefd1c2a34bad79675 (diff)
downloadudev-c53735efc9720b28676c1b51fbed04dc592236e8.tar.gz
[PATCH] small cleanup
This one is nothing important, just add some quotes to be more consistent with the rest and make sure that the return value is positive (since the error return values are negative). Hmm?
Diffstat (limited to 'udev.c')
-rw-r--r--udev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev.c b/udev.c
index 1222b239..bbff89ba 100644
--- a/udev.c
+++ b/udev.c
@@ -221,7 +221,7 @@ exit_sysbus:
sysbus_disconnect();
exit:
- return retval;
+ return -retval;
}
int main(int argc, char **argv, char **envp)