diff options
Diffstat (limited to 'runtime/obj.c')
-rw-r--r-- | runtime/obj.c | 3 |
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); |