mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
loader.c: Use portable printf conversion specifier for int64.
ASTERISK-30060 #close Change-Id: I88d47a1488be2f39017b8d562f993f081844fcb8
This commit is contained in:
committed by
Friendly Automation
parent
63ff0ccadf
commit
8d7819482c
@@ -2517,9 +2517,9 @@ done:
|
|||||||
usElapsed = ast_tvdiff_us(end_time, start_time);
|
usElapsed = ast_tvdiff_us(end_time, start_time);
|
||||||
|
|
||||||
#ifdef AST_XML_DOCS
|
#ifdef AST_XML_DOCS
|
||||||
ast_debug(1, "Loader time with AST_XML_DOCS: %ld.%06ld\n", usElapsed / 1000000, usElapsed % 1000000);
|
ast_debug(1, "Loader time with AST_XML_DOCS: %" PRId64 ".%06" PRId64 "\n", usElapsed / 1000000, usElapsed % 1000000);
|
||||||
#else
|
#else
|
||||||
ast_debug(1, "Loader time without AST_XML_DOCS: %ld.%06ld\n", usElapsed / 1000000, usElapsed % 1000000);
|
ast_debug(1, "Loader time without AST_XML_DOCS: %" PRId64 ".%06" PRId64 "\n", usElapsed / 1000000, usElapsed % 1000000);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
|
Reference in New Issue
Block a user