diff options
| author | 2023-05-13 20:04:19 +0200 | |
|---|---|---|
| committer | 2023-05-13 20:04:19 +0200 | |
| commit | af51970e6b1b9d9e6c8a925b040420e465bc2326 (patch) | |
| tree | c8e3537703494e7d6a24aa7e4c30d2bf0c54dde7 /src/out-plutil.c | |
| parent | 91c0aa8fa82d3fb42c64b0e46bfa861cada5e47d (diff) | |
| download | libplist-af51970e6b1b9d9e6c8a925b040420e465bc2326.tar.gz libplist-af51970e6b1b9d9e6c8a925b040420e465bc2326.tar.bz2 | |
Add space before PRI* macros, some compilers do not like it
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) | |||
| 98 | case PLIST_INT: | 98 | case PLIST_INT: |
| 99 | val = (char*)malloc(64); | 99 | val = (char*)malloc(64); |
| 100 | if (node_data->length == 16) { | 100 | if (node_data->length == 16) { |
| 101 | val_len = snprintf(val, 64, "%"PRIu64, node_data->intval); | 101 | val_len = snprintf(val, 64, "%" PRIu64, node_data->intval); |
| 102 | } else { | 102 | } else { |
| 103 | val_len = snprintf(val, 64, "%"PRIi64, node_data->intval); | 103 | val_len = snprintf(val, 64, "%" PRIi64, node_data->intval); |
| 104 | } | 104 | } |
| 105 | str_buf_append(*outbuf, val, val_len); | 105 | str_buf_append(*outbuf, val, val_len); |
| 106 | free(val); | 106 | free(val); |
