The compiler had not complained here because both macros are
probably the same.
But gettext issued a funny warning:
sys-utils/chmem.c:67: warning: Although being used in a format string position, the msgid is not a valid C format string. Reason: The string ends in the middle of a directive.
CC: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
start = idx * desc->block_size;
end = start + desc->block_size - 1;
snprintf(buf, bufsz,
- _("Memory Block %"SCNu64" (0x%016"PRIx64"-0x%016"PRIx64")"),
+ _("Memory Block %"PRIu64" (0x%016"PRIx64"-0x%016"PRIx64")"),
idx, start, end);
}