You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Most useful on architectures with stricter memory alignment requirements, like ARM.
60
-
pr_emerg("unaligned memory access");
61
-
}
57
+
pr_emerg("unaligned memory access"); // Most useful on architectures with stricter memory alignment requirements, like ARM.
62
58
else
63
-
{
64
59
pr_emerg("insufficient size");
65
-
pr_emerg("kind=%d, address %p with insufficient space for object of type %s", type_mismatch->type_check_kind, (void*) pointer, type_mismatch->type->name);
66
-
}
60
+
pr_emerg("kind=%d, address %p, for object of type %s", type_mismatch->type_check_kind, (void*) pointer, type_mismatch->type->name);
0 commit comments