summaryrefslogtreecommitdiff
path: root/pr/src/misc/prerrortable.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/src/misc/prerrortable.c')
-rw-r--r--pr/src/misc/prerrortable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pr/src/misc/prerrortable.c b/pr/src/misc/prerrortable.c
index a51b4e8f..50b956a2 100644
--- a/pr/src/misc/prerrortable.c
+++ b/pr/src/misc/prerrortable.c
@@ -148,7 +148,7 @@ PR_ErrorToString(PRErrorCode code, PRLanguageCode language)
}
if (code >= 0 && code < 256) {
- return strerror(code);
+ return strerror(code);
}
offset = (int) (code & ((1<<ERRCODE_RANGE)-1));
@@ -204,7 +204,7 @@ PR_ErrorInstallTable(const struct PRErrorTable *table)
new_et = (struct PRErrorTableList *)
PR_Malloc(sizeof(struct PRErrorTableList));
if (!new_et)
- return errno; /* oops */
+ return errno; /* oops */
new_et->table = table;
if (callback_newtable) {
new_et->table_private = callback_newtable(table, callback_private);