1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-19 22:50:17 +03:00

[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?
This commit is contained in:
christophe@saout.de 2004-01-10 00:54:33 -08:00 committed by Greg KH
parent a05b77509e
commit c53735efc9
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ void dump_config_dev(struct config_device *dev)
dev->name, dev->bus, dev->place);
break;
case REPLACE:
dbg_parse("REPLACE name=%s, kernel_name=%s",
dbg_parse("REPLACE name='%s', kernel_name='%s'",
dev->name, dev->kernel_name);
break;
case CALLOUT:

2
udev.c
View File

@ -221,7 +221,7 @@ exit_sysbus:
sysbus_disconnect();
exit:
return retval;
return -retval;
}
int main(int argc, char **argv, char **envp)