remove a debugging bit in restore.c

This commit is contained in:
nhmall
2025-06-01 22:43:34 -04:00
parent 8d5ffbd6e3
commit a0da9168b7

View File

@@ -236,12 +236,9 @@ restobjchn(NHFILE *nhfp, boolean frozen)
#ifndef SFCTOOL
boolean ghostly = (nhfp->ftype == NHF_BONESFILE);
#endif
boolean trouble = FALSE;
while (1) {
Sfi_int(nhfp, &buflen, "obj-obj_length");
if (!(buflen != -1 || buflen != sizeof (struct obj)))
trouble = TRUE;
if (buflen == -1)
break;
@@ -302,7 +299,6 @@ restobjchn(NHFILE *nhfp, boolean frozen)
#ifdef SFCTOOL
nhUse(frozen);
#endif
nhUse(trouble);
return first;
}