diff options
Diffstat (limited to 'util-linux/fdisk_gpt.c')
-rw-r--r-- | util-linux/fdisk_gpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/fdisk_gpt.c b/util-linux/fdisk_gpt.c index 5786d5f7d..715e227ca 100644 --- a/util-linux/fdisk_gpt.c +++ b/util-linux/fdisk_gpt.c | |||
@@ -106,7 +106,7 @@ gpt_list_table(int xtra UNUSED_PARAM) | |||
106 | (unsigned long long)SWAP_LE64(gpt_hdr->first_usable_lba), | 106 | (unsigned long long)SWAP_LE64(gpt_hdr->first_usable_lba), |
107 | (unsigned long long)SWAP_LE64(gpt_hdr->last_usable_lba)); | 107 | (unsigned long long)SWAP_LE64(gpt_hdr->last_usable_lba)); |
108 | 108 | ||
109 | printf("Number Start (sector) End (sector) Size Code Name\n"); | 109 | puts("Number Start (sector) End (sector) Size Code Name"); |
110 | for (i = 0; i < n_parts; i++) { | 110 | for (i = 0; i < n_parts; i++) { |
111 | gpt_partition *p = gpt_part(i); | 111 | gpt_partition *p = gpt_part(i); |
112 | if (p->lba_start) { | 112 | if (p->lba_start) { |
@@ -119,7 +119,7 @@ gpt_list_table(int xtra UNUSED_PARAM) | |||
119 | numstr6, | 119 | numstr6, |
120 | 0x0700 /* FIXME */); | 120 | 0x0700 /* FIXME */); |
121 | gpt_print_wide(p->name, 18); | 121 | gpt_print_wide(p->name, 18); |
122 | printf("\n"); | 122 | bb_putchar('\n'); |
123 | } | 123 | } |
124 | } | 124 | } |
125 | } | 125 | } |