summaryrefslogtreecommitdiffstats
path: root/runtime/obj.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/obj.c')
-rw-r--r--runtime/obj.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/obj.c b/runtime/obj.c
index 7f4800fd..03d25cdc 100644
--- a/runtime/obj.c
+++ b/runtime/obj.c
@@ -899,7 +899,8 @@ objDeserializeWithMethods(void *ppObj, uchar *pszTypeExpected, int lenTypeExpect
do {
iRetLocal = objDeserializeHeader((uchar*) "Obj", &pstrID, &oVers, pStrm);
if(iRetLocal != RS_RET_OK) {
- dbgprintf("objDeserialize error %d during header processing - trying to recover\n", iRetLocal);
+ dbgprintf("objDeserialize error %d during header processing - "
+ "trying to recover\n", iRetLocal);
CHKiRet(objDeserializeTryRecover(pStrm));
}
} while(iRetLocal != RS_RET_OK);