diff options
| -rwxr-xr-x | src/asdcp/KLV.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/asdcp/KLV.h b/src/asdcp/KLV.h index bad1f12..5bca07c 100755 --- a/src/asdcp/KLV.h +++ b/src/asdcp/KLV.h @@ -57,22 +57,14 @@ namespace ASDCP inline const char* i64sz(i64_t i, char* buf) { assert(buf); -#ifdef WIN32 - snprintf(buf, IntBufferLen, "%I64d", i); -#else snprintf(buf, IntBufferLen, "%lld", i); -#endif return buf; } inline const char* ui64sz(ui64_t i, char* buf) { assert(buf); -#ifdef WIN32 - snprintf(buf, IntBufferLen, "%I64u", i); -#else snprintf(buf, IntBufferLen, "%llu", i); -#endif return buf; } |
