summaryrefslogtreecommitdiff
path: root/riscos/ucstables.c
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/ucstables.c')
-rw-r--r--riscos/ucstables.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/riscos/ucstables.c b/riscos/ucstables.c
index e8bc25080..c881437ca 100644
--- a/riscos/ucstables.c
+++ b/riscos/ucstables.c
@@ -622,7 +622,7 @@ nserror utf8_from_local_encoding(const char *string, size_t len, char **result)
off - prev_off, &temp, NULL);
if (err != NSERROR_OK) {
assert(err != NSERROR_BAD_ENCODING);
- LOG(("utf8_from_enc failed"));
+ LOG("utf8_from_enc failed");
free(*result);
return NSERROR_NOMEM;
}
@@ -664,7 +664,7 @@ nserror utf8_from_local_encoding(const char *string, size_t len, char **result)
&temp, NULL);
if (err != NSERROR_OK) {
assert(err != NSERROR_BAD_ENCODING);
- LOG(("utf8_from_enc failed"));
+ LOG("utf8_from_enc failed");
free(*result);
return NSERROR_NOMEM;
}
@@ -679,7 +679,7 @@ nserror utf8_from_local_encoding(const char *string, size_t len, char **result)
/* and copy into more reasonably-sized buffer */
temp = realloc((*result), cur_off + 1);
if (!temp) {
- LOG(("realloc failed"));
+ LOG("realloc failed");
free(*result);
return NSERROR_NOMEM;
}