diff options
Diffstat (limited to 'src/out-plutil.c')
-rw-r--r-- | src/out-plutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/out-plutil.c b/src/out-plutil.c index fbed98b..ed71d8f 100644 --- a/src/out-plutil.c +++ b/src/out-plutil.c @@ -98,9 +98,9 @@ static int node_to_string(node_t node, bytearray_t **outbuf, uint32_t depth) case PLIST_INT: val = (char*)malloc(64); if (node_data->length == 16) { - val_len = snprintf(val, 64, "%"PRIu64, node_data->intval); + val_len = snprintf(val, 64, "%" PRIu64, node_data->intval); } else { - val_len = snprintf(val, 64, "%"PRIi64, node_data->intval); + val_len = snprintf(val, 64, "%" PRIi64, node_data->intval); } str_buf_append(*outbuf, val, val_len); free(val); |