diff options
author | Karel Zak <kzak@redhat.com> | 2007-07-02 15:41:48 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2007-07-02 15:41:48 +0200 |
commit | 652de88cef7f32af6d035d7cc29d6073ae50741e (patch) | |
tree | 78f2508abbc8973a12e8d8624100f686fcca8e18 | |
parent | 46151e8772563f0dffe3901575dd8999f9c2fd43 (diff) | |
download | util-linux-old-652de88cef7f32af6d035d7cc29d6073ae50741e.tar.gz |
cfdisk: fix stupid typo in GPT checker call
Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r-- | fdisk/cfdisk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fdisk/cfdisk.c b/fdisk/cfdisk.c index 1117f454..e3941d89 100644 --- a/fdisk/cfdisk.c +++ b/fdisk/cfdisk.c @@ -1670,7 +1670,7 @@ fill_p_info(void) { opentype = O_RDWR; opened = TRUE; - if (gpt_probe_signature_devname(fd)) { + if (gpt_probe_signature_fd(fd)) { print_warning(_("Warning!! Unsupported GPT (GUID Partition Table) detected. Use GNU Parted.")); refresh(); getch(); |