*: style fixes. no code changes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2011-12-15 12:39:25 +01:00
parent 454fe29a80
commit d6f5000c13
3 changed files with 10 additions and 9 deletions

View File

@ -211,7 +211,8 @@ static NOINLINE int lzo1x_optimize(uint8_t *in, unsigned in_len,
*litp = (unsigned char)(lit - 3); *litp = (unsigned char)(lit - 3);
o_m1_b++; o_m1_b++;
*op++ = *m_pos++; *op++ = *m_pos++; *op++ = *m_pos++;
*op++ = *m_pos++;
goto copy_literal_run; goto copy_literal_run;
} }
copy_m1: copy_m1:

View File

@ -1312,8 +1312,8 @@ int ifupdown_main(int argc UNUSED_PARAM, char **argv)
llist_t *iface_state = find_iface_state(state_list, iface); llist_t *iface_state = find_iface_state(state_list, iface);
if (cmds == iface_up && !any_failures) { if (cmds == iface_up && !any_failures) {
char * const newiface = xasprintf("%s=%s", iface, liface); char *newiface = xasprintf("%s=%s", iface, liface);
if (iface_state == NULL) { if (!iface_state) {
llist_add_to_end(&state_list, newiface); llist_add_to_end(&state_list, newiface);
} else { } else {
free(iface_state->data); free(iface_state->data);

View File

@ -23,9 +23,9 @@
int rdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int rdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int rdev_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) int rdev_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
{ {
char const * const root_device = find_block_device("/"); const char *root_device = find_block_device("/");
if (root_device != NULL) { if (root_device) {
printf("%s /\n", root_device); printf("%s /\n", root_device);
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }