summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-05-13 20:04:19 +0200
committerGravatar Nikias Bassen2023-05-13 20:04:19 +0200
commitaf51970e6b1b9d9e6c8a925b040420e465bc2326 (patch)
treec8e3537703494e7d6a24aa7e4c30d2bf0c54dde7
parent91c0aa8fa82d3fb42c64b0e46bfa861cada5e47d (diff)
downloadlibplist-af51970e6b1b9d9e6c8a925b040420e465bc2326.tar.gz
libplist-af51970e6b1b9d9e6c8a925b040420e465bc2326.tar.bz2
Add space before PRI* macros, some compilers do not like it
-rw-r--r--src/jplist.c4
-rw-r--r--src/oplist.c4
-rw-r--r--src/out-default.c8
-rw-r--r--src/out-limd.c8
-rw-r--r--src/out-plutil.c4
-rw-r--r--src/xplist.c8
6 files changed, 18 insertions, 18 deletions
diff --git a/src/jplist.c b/src/jplist.c
index 9263b36..ca4743c 100644
--- a/src/jplist.c
+++ b/src/jplist.c
@@ -143,9 +143,9 @@ static int node_to_json(node_t node, bytearray_t **outbuf, uint32_t depth, int p
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);
diff --git a/src/oplist.c b/src/oplist.c
index 74c4e0a..b2395a4 100644
--- a/src/oplist.c
+++ b/src/oplist.c
@@ -158,9 +158,9 @@ static int node_to_openstep(node_t node, bytearray_t **outbuf, uint32_t depth, i
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);
diff --git a/src/out-default.c b/src/out-default.c
index 5747097..3ee9b3a 100644
--- a/src/out-default.c
+++ b/src/out-default.c
@@ -98,9 +98,9 @@ static int node_to_string(node_t node, bytearray_t **outbuf, uint32_t depth, uin
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);
@@ -257,9 +257,9 @@ static int node_to_string(node_t node, bytearray_t **outbuf, uint32_t depth, uin
str_buf_append(*outbuf, "CF$UID:", 7);
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);
diff --git a/src/out-limd.c b/src/out-limd.c
index 0ff9a65..433ae06 100644
--- a/src/out-limd.c
+++ b/src/out-limd.c
@@ -101,9 +101,9 @@ static int node_to_string(node_t node, bytearray_t **outbuf, uint32_t depth, uin
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);
@@ -225,9 +225,9 @@ static int node_to_string(node_t node, bytearray_t **outbuf, uint32_t depth, uin
str_buf_append(*outbuf, "CF$UID:", 7);
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);
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);
diff --git a/src/xplist.c b/src/xplist.c
index 481da5d..4833a92 100644
--- a/src/xplist.c
+++ b/src/xplist.c
@@ -173,9 +173,9 @@ static int node_to_xml(node_t node, bytearray_t **outbuf, uint32_t depth)
tag_len = XPLIST_INT_LEN;
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);
}
break;
@@ -237,9 +237,9 @@ static int node_to_xml(node_t node, bytearray_t **outbuf, uint32_t depth)
tag_len = XPLIST_DICT_LEN;
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);
}
break;
case PLIST_NULL: