gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r10766 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r10766 - gnunet/src/util
Date: Fri, 2 Apr 2010 23:31:25 +0200

Author: grothoff
Date: 2010-04-02 23:31:25 +0200 (Fri, 02 Apr 2010)
New Revision: 10766

Modified:
   gnunet/src/util/strings.c
   gnunet/src/util/test_strings.c
Log:
consistency

Modified: gnunet/src/util/strings.c
===================================================================
--- gnunet/src/util/strings.c   2010-04-02 21:06:49 UTC (rev 10765)
+++ gnunet/src/util/strings.c   2010-04-02 21:31:25 UTC (rev 10766)
@@ -385,7 +385,7 @@
             }
         }
     }
-  GNUNET_asprintf (&ret, "%llu%s", dval, unit);
+  GNUNET_asprintf (&ret, "%llu %s", dval, unit);
   return ret;
 }
 

Modified: gnunet/src/util/test_strings.c
===================================================================
--- gnunet/src/util/test_strings.c      2010-04-02 21:06:49 UTC (rev 10765)
+++ gnunet/src/util/test_strings.c      2010-04-02 21:31:25 UTC (rev 10766)
@@ -38,28 +38,28 @@
   char *b;
   struct GNUNET_TIME_Absolute at;
 
-  sprintf (buf, "4%s", _( /* size unit */ "b"));
+  sprintf (buf, "4 %s", _( /* size unit */ "b"));
   b = GNUNET_STRINGS_byte_size_fancy (4);
   WANT (buf, b);
-  sprintf (buf, "10%s", _( /* size unit */ "KiB"));
+  sprintf (buf, "10 %s", _( /* size unit */ "KiB"));
   b = GNUNET_STRINGS_byte_size_fancy (10240);
   WANT (buf, b);
-  sprintf (buf, "10%s", _( /* size unit */ "TiB"));
+  sprintf (buf, "10 %s", _( /* size unit */ "TiB"));
   b = GNUNET_STRINGS_byte_size_fancy (10240LL * 1024LL * 1024LL * 1024LL);
   WANT (buf, b);
-  sprintf (buf, "4%s", _( /* time unit */ "ms"));
+  sprintf (buf, "4 %s", _( /* time unit */ "ms"));
   b =
     GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_relative_multiply
                                             (GNUNET_TIME_UNIT_MILLISECONDS,
                                              4));
   WANT (buf, b);
-  sprintf (buf, "7%s", _( /* time unit */ "s"));
+  sprintf (buf, "7 %s", _( /* time unit */ "s"));
   b =
     GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_relative_multiply
                                             (GNUNET_TIME_UNIT_MILLISECONDS,
                                              7 * 1000));
   WANT (buf, b);
-  sprintf (buf, "7%s", _( /* time unit */ "h"));
+  sprintf (buf, "7 %s", _( /* time unit */ "h"));
   b =
     GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_relative_multiply
                                             (GNUNET_TIME_UNIT_MILLISECONDS,





reply via email to

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