bug-parted
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Bug in libparted


From: Harley D. Eades III
Subject: Bug in libparted
Date: 13 Sep 2004 16:31:45 -0500
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3

Hello,
        We have a bug in libparted/gnu.c nothing big the variable PedSector 
cyl_Size; is declared with a capital S in size and through the rest of the 
function it is a lower case.  So here is a one line patch.

2004-09-13  Harley D. Eades III  <address@hidden>

        * libparted/gnu.c (_device_probe_geometry): Wrong variable name.

Thanks
hde

--- ../tmp/stable/libparted/gnu.c       2004-09-06 17:41:38.000000000 -0500
+++ ./libparted/gnu.c   2004-09-13 09:26:35.000000000 -0500
@@ -63,7 +63,7 @@
 static int
 _device_probe_geometry (PedDevice* dev)
 {
-       PedSector cyl_Size;
+       PedSector cyl_size;

        dev->length = _device_get_length (dev);
        if (!dev->length)






reply via email to

[Prev in Thread] Current Thread [Next in Thread]