aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-10-29 11:46:52 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2010-10-29 11:46:52 +0200
commitfb132e47370378474c68ad22c1c0cb2ccee178de (patch)
tree4f78d0fdd1c2fa2341c7d9bb17f9d98d099a238c /util-linux
parent66cb7bed33da605674c3d24734466b8e8a60e337 (diff)
downloadbusybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.tar.gz
busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.tar.bz2
busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.zip
whitespace cleanup
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/fbset.c6
-rw-r--r--util-linux/hexdump.c12
2 files changed, 9 insertions, 9 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c
index 07c8f55d1..77cc1fc12 100644
--- a/util-linux/fbset.c
+++ b/util-linux/fbset.c
@@ -26,7 +26,7 @@ enum {
26 26
27struct fb_bitfield { 27struct fb_bitfield {
28 uint32_t offset; /* beginning of bitfield */ 28 uint32_t offset; /* beginning of bitfield */
29 uint32_t length; /* length of bitfield */ 29 uint32_t length; /* length of bitfield */
30 uint32_t msb_right; /* !=0: Most significant bit is right */ 30 uint32_t msb_right; /* !=0: Most significant bit is right */
31}; 31};
32struct fb_var_screeninfo { 32struct fb_var_screeninfo {
@@ -52,7 +52,7 @@ struct fb_var_screeninfo {
52 uint32_t height; /* height of picture in mm */ 52 uint32_t height; /* height of picture in mm */
53 uint32_t width; /* width of picture in mm */ 53 uint32_t width; /* width of picture in mm */
54 54
55 uint32_t accel_flags; /* acceleration flags (hints) */ 55 uint32_t accel_flags; /* acceleration flags (hints) */
56 56
57 /* Timing: All values in pixclocks, except pixclock (of course) */ 57 /* Timing: All values in pixclocks, except pixclock (of course) */
58 uint32_t pixclock; /* pixel clock in ps (pico seconds) */ 58 uint32_t pixclock; /* pixel clock in ps (pico seconds) */
@@ -317,7 +317,7 @@ static int read_mode_db(struct fb_var_screeninfo *base, const char *fn,
317 } 317 }
318 case 4: 318 case 4:
319 case 5: 319 case 5:
320 case 6: { 320 case 6: {
321 static const uint32_t syncs[] = {FB_SYNC_VERT_HIGH_ACT, FB_SYNC_HOR_HIGH_ACT, FB_SYNC_COMP_HIGH_ACT}; 321 static const uint32_t syncs[] = {FB_SYNC_VERT_HIGH_ACT, FB_SYNC_HOR_HIGH_ACT, FB_SYNC_COMP_HIGH_ACT};
322 ss(&base->sync, syncs[i-4], p, "low"); 322 ss(&base->sync, syncs[i-4], p, "low");
323//bb_info_msg("SYNC[%s]", p); 323//bb_info_msg("SYNC[%s]", p);
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c
index 8c4d521ab..a38fe05e7 100644
--- a/util-linux/hexdump.c
+++ b/util-linux/hexdump.c
@@ -4,7 +4,7 @@
4 * Based on code from util-linux v 2.11l 4 * Based on code from util-linux v 2.11l
5 * 5 *
6 * Copyright (c) 1989 6 * Copyright (c) 1989
7 * The Regents of the University of California. All rights reserved. 7 * The Regents of the University of California. All rights reserved.
8 * 8 *
9 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
10 */ 10 */
@@ -32,11 +32,11 @@ static void bb_dump_addfile(dumper_t *dumper, char *name)
32} 32}
33 33
34static const char *const add_strings[] = { 34static const char *const add_strings[] = {
35 "\"%07.7_ax \" 16/1 \"%03o \" \"\\n\"", /* b */ 35 "\"%07.7_ax \" 16/1 \"%03o \" \"\\n\"", /* b */
36 "\"%07.7_ax \" 16/1 \"%3_c \" \"\\n\"", /* c */ 36 "\"%07.7_ax \" 16/1 \"%3_c \" \"\\n\"", /* c */
37 "\"%07.7_ax \" 8/2 \" %05u \" \"\\n\"", /* d */ 37 "\"%07.7_ax \" 8/2 \" %05u \" \"\\n\"", /* d */
38 "\"%07.7_ax \" 8/2 \" %06o \" \"\\n\"", /* o */ 38 "\"%07.7_ax \" 8/2 \" %06o \" \"\\n\"", /* o */
39 "\"%07.7_ax \" 8/2 \" %04x \" \"\\n\"", /* x */ 39 "\"%07.7_ax \" 8/2 \" %04x \" \"\\n\"", /* x */
40}; 40};
41 41
42static const char add_first[] ALIGN1 = "\"%07.7_Ax\n\""; 42static const char add_first[] ALIGN1 = "\"%07.7_Ax\n\"";