diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-03-27 07:59:47 -0400 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-03-27 22:32:57 +0159 |
commit | cec8a8ea2a524a6f9e5ea42750b9f0f54df873ce (patch) | |
tree | dcda5865761364d1253982e89eab3f122258e669 /perl-install/c | |
parent | 675d2b62098dd84c35c37944a1e8bd65114c37a1 (diff) | |
download | drakx-cec8a8ea2a524a6f9e5ea42750b9f0f54df873ce.tar drakx-cec8a8ea2a524a6f9e5ea42750b9f0f54df873ce.tar.gz drakx-cec8a8ea2a524a6f9e5ea42750b9f0f54df873ce.tar.bz2 drakx-cec8a8ea2a524a6f9e5ea42750b9f0f54df873ce.tar.xz drakx-cec8a8ea2a524a6f9e5ea42750b9f0f54df873ce.zip |
log which type is unknown
Diffstat (limited to 'perl-install/c')
-rwxr-xr-x | perl-install/c/stuff.xs.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl index 7f12bcc26..9a983a493 100755 --- a/perl-install/c/stuff.xs.pl +++ b/perl-install/c/stuff.xs.pl @@ -127,7 +127,7 @@ PedPartitionFlag string_to_pedpartflag(char*type) { } else if (!strcmp(type, "RAID")) { flag = PED_PARTITION_RAID; } else { - printf("set_partition_flag: unknown type"); + printf("set_partition_flag: unknown type: %s\n", type); } return flag; } |