URI:
       tFix build error with unsigned float (it doesn't exist) - mkb - display progress bars in the terminal
  HTML git clone git://z3bra.org/mkb
   DIR Log
   DIR Files
   DIR Refs
       ---
   DIR commit c7e2e0c80d4cb55c12d4fa99faba1922d0d9aa36
   DIR parent 5da1768ac0aae5a2fd93cea096a0d69245220148
  HTML Author: sin <sin@2f30.org>
       Date:   Tue,  7 Apr 2015 09:16:32 +0100
       
       Fix build error with unsigned float (it doesn't exist)
       
       Diffstat:
         M mkb.c                               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/mkb.c b/mkb.c
       t@@ -12,8 +12,8 @@ int
        main (int argc, char **argv)
        {
                int i;
       -        unsigned float size = 0;
       -        unsigned float value = 0;
       +        float size = 0;
       +        float value = 0;
                char *char1 = NULL;
                char *char2 = NULL;
                char *current = NULL;