diff options
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r-- | util-linux/fdisk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index ed5abe956..4ecbadf78 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -402,14 +402,14 @@ set_all_unchanged(void) | |||
402 | ptes[i].changed = 0; | 402 | ptes[i].changed = 0; |
403 | } | 403 | } |
404 | 404 | ||
405 | static ATTRIBUTE_ALWAYS_INLINE void | 405 | static ALWAYS_INLINE void |
406 | set_changed(int i) | 406 | set_changed(int i) |
407 | { | 407 | { |
408 | ptes[i].changed = 1; | 408 | ptes[i].changed = 1; |
409 | } | 409 | } |
410 | #endif /* FEATURE_FDISK_WRITABLE */ | 410 | #endif /* FEATURE_FDISK_WRITABLE */ |
411 | 411 | ||
412 | static ATTRIBUTE_ALWAYS_INLINE struct partition * | 412 | static ALWAYS_INLINE struct partition * |
413 | get_part_table(int i) | 413 | get_part_table(int i) |
414 | { | 414 | { |
415 | return ptes[i].part_table; | 415 | return ptes[i].part_table; |
@@ -430,7 +430,7 @@ valid_part_table_flag(const char *mbuffer) | |||
430 | } | 430 | } |
431 | 431 | ||
432 | #if ENABLE_FEATURE_FDISK_WRITABLE | 432 | #if ENABLE_FEATURE_FDISK_WRITABLE |
433 | static ATTRIBUTE_ALWAYS_INLINE void | 433 | static ALWAYS_INLINE void |
434 | write_part_table_flag(char *b) | 434 | write_part_table_flag(char *b) |
435 | { | 435 | { |
436 | b[510] = 0x55; | 436 | b[510] = 0x55; |