]> git.saurik.com Git - android/aapt.git/blobdiff - StringPool.cpp
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) DO NOT MERGE
[android/aapt.git] / StringPool.cpp
index ec585913e441a34b284be8ab554ff723b0a862a8..9a0a1c46251bf406e5fa598f79f887b0e1271e11 100644 (file)
@@ -8,6 +8,14 @@
 
 #include <utils/ByteOrder.h>
 
+#if HAVE_PRINTF_ZD
+#  define ZD "%zd"
+#  define ZD_TYPE ssize_t
+#else
+#  define ZD "%ld"
+#  define ZD_TYPE long
+#endif
+
 #define NOISY(x) //x
 
 void strcpy16_htod(uint16_t* dst, const uint16_t* src)
@@ -25,8 +33,12 @@ void printStringPool(const ResStringPool* pool)
     const size_t NS = pool->size();
     for (size_t s=0; s<NS; s++) {
         size_t len;
-        printf("String #%d: %s\n", s,
-                String8(pool->stringAt(s, &len)).string());
+        const char *str = (const char*)pool->string8At(s, &len);
+        if (str == NULL) {
+            str = String8(pool->stringAt(s, &len)).string();
+        }
+
+        printf("String #" ZD ": %s\n", (ZD_TYPE) s, str);
     }
 }