[haiku-commits] r40263 - haiku/trunk/src/kits/locale

  • From: zharik@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 22 Jan 2011 14:20:46 +0100 (CET)

Author: siarzhuk
Date: 2011-01-22 14:20:46 +0100 (Sat, 22 Jan 2011)
New Revision: 40263
Changeset: http://dev.haiku-os.org/changeset/40263

Modified:
   haiku/trunk/src/kits/locale/LocaleRoster.cpp
Log:
Fixed cosmetic problem in diagnostic messages: one space was missed, one was 
extra.
Pointed by Diver. Thanks!


Modified: haiku/trunk/src/kits/locale/LocaleRoster.cpp
===================================================================
--- haiku/trunk/src/kits/locale/LocaleRoster.cpp        2011-01-21 22:42:52 UTC 
(rev 40262)
+++ haiku/trunk/src/kits/locale/LocaleRoster.cpp        2011-01-22 13:20:46 UTC 
(rev 40263)
@@ -335,7 +335,7 @@
        }
 
        if (!found) {
-               log_team(LOG_DEBUG, "Catalog %x doesn't belong to any image !",
+               log_team(LOG_DEBUG, "Catalog %x doesn't belong to any image!",
                        catalog);
                return catalog;
        }
@@ -345,7 +345,7 @@
        char objectSignature[B_MIME_TYPE_LENGTH];
        if (objectInfo.GetSignature(objectSignature) != B_OK) {
                log_team(LOG_ERR, "File %s has no mimesignature, so it can't 
use"
-                       "localization.", info.name);
+                       " localization.", info.name);
                return catalog;
        }
 


Other related posts:

  • » [haiku-commits] r40263 - haiku/trunk/src/kits/locale - zharik