summaryrefslogtreecommitdiffstats
path: root/fdisk/cfdisk.c
diff options
context:
space:
mode:
authorKarel Zak2007-07-02 15:41:48 +0200
committerKarel Zak2007-07-02 15:41:48 +0200
commit652de88cef7f32af6d035d7cc29d6073ae50741e (patch)
tree78f2508abbc8973a12e8d8624100f686fcca8e18 /fdisk/cfdisk.c
parentsfdisk: fix "differ in signedness" compiler warnings (diff)
downloadkernel-qcow2-util-linux-652de88cef7f32af6d035d7cc29d6073ae50741e.tar.gz
kernel-qcow2-util-linux-652de88cef7f32af6d035d7cc29d6073ae50741e.tar.xz
kernel-qcow2-util-linux-652de88cef7f32af6d035d7cc29d6073ae50741e.zip
cfdisk: fix stupid typo in GPT checker call
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'fdisk/cfdisk.c')
-rw-r--r--fdisk/cfdisk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fdisk/cfdisk.c b/fdisk/cfdisk.c
index 1117f454c..e3941d89b 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();