Skip to content

Commit

Permalink
"missing deserialize repr func" gives debug_name now, too.
Browse files Browse the repository at this point in the history
  • Loading branch information
timo committed Oct 12, 2016
1 parent c1ada4b commit 5d45c56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/6model/serialization.c
Expand Up @@ -2628,8 +2628,8 @@ static void deserialize_object(MVMThreadContext *tc, MVMSerializationReader *rea
if (REPR(obj)->deserialize)
REPR(obj)->deserialize(tc, STABLE(obj), obj, OBJECT_BODY(obj), reader);
else
fail_deserialize(tc, reader, "Missing deserialize REPR function for %s",
REPR(obj)->name);
fail_deserialize(tc, reader, "Missing deserialize REPR function for %s (%s)",
REPR(obj)->name, STABLE(obj)->debug_name);
reader->current_object = NULL;
}
}
Expand Down

0 comments on commit 5d45c56

Please sign in to comment.