]> git.saurik.com Git - android/aapt.git/blobdiff - StringPool.cpp
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)
[android/aapt.git] / StringPool.cpp
index e28bdff410b0a9a28e9978129c1e6e28a956d795..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)
@@ -30,7 +38,7 @@ void printStringPool(const ResStringPool* pool)
             str = String8(pool->stringAt(s, &len)).string();
         }
 
-        printf("String #%d: %s\n", s, str);
+        printf("String #" ZD ": %s\n", (ZD_TYPE) s, str);
     }
 }