[PATCH] Fix stupid gcc "optimization" of 1 character printk() calls.... Ick...

This commit is contained in:
greg@kroah.com 2004-01-13 01:02:56 -08:00 committed by Greg KH
parent ee1db00d07
commit 79c3cb65f8
1 changed files with 1 additions and 2 deletions

3
udev.c
View File

@ -88,8 +88,7 @@ static void print_record(char *path, struct udevice *dev)
printf("N: %s\n", dev->name);
printf("S: %s\n", dev->symlink);
printf("O: %s\n", dev->owner);
printf("G: %s\n", dev->group);
printf("\n");
printf("G: %s\n\n", dev->group);
}
enum query_type {