mirror of
https://salsa.debian.org/ha-team/libqb
synced 2026-08-09 22:49:43 +00:00
includes: Fix format string
The format strings for QB_HDB_D_FORMAT & QB_HDB_X_FORMAT had no spaces between "%" and PRIx64. This is allowed, but technically incorrect and breaks C++11 Signed-off-by: Christine Caulfield <ccaulfie@redhat.com>
This commit is contained in:
parent
3245d7ad1d
commit
0f62ddb76f
@ -49,8 +49,8 @@ typedef uint64_t qb_handle_t;
|
||||
/*
|
||||
* Formatting for string printing on 32/64 bit systems
|
||||
*/
|
||||
#define QB_HDB_D_FORMAT "%"PRIu64
|
||||
#define QB_HDB_X_FORMAT "%"PRIx64
|
||||
#define QB_HDB_D_FORMAT "%" PRIu64
|
||||
#define QB_HDB_X_FORMAT "%" PRIx64
|
||||
|
||||
struct qb_hdb_handle {
|
||||
int32_t state;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user