This commit is contained in:
Kovid Goyal 2016-11-30 08:51:40 +05:30
parent 56cfc7df3b
commit 49f3a4213c

View File

@ -18,7 +18,6 @@ utoi(uint32_t *buf, unsigned int sz) {
uint32_t *p = buf; uint32_t *p = buf;
// Ignore leading zeros // Ignore leading zeros
while(sz > 0) { while(sz > 0) {
printf("*p=%c\n", *p);
if (*p == '0') { p++; sz--; } if (*p == '0') { p++; sz--; }
else break; else break;
} }