* exceptions_handle_exception: Better assert message.
authortwisti <none@none>
Thu, 8 Dec 2005 14:25:13 +0000 (14:25 +0000)
committertwisti <none@none>
Thu, 8 Dec 2005 14:25:13 +0000 (14:25 +0000)
src/vm/exceptions.c

index 4e97a598b5644e427225db83483fa3277c606709..bcdd7fb949716903bb6afecf5d01a776c127965f 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Edwin Steiner
 
-   $Id: exceptions.c 3893 2005-12-06 20:18:01Z twisti $
+   $Id: exceptions.c 3907 2005-12-08 14:25:13Z twisti $
 
 */
 
@@ -1086,7 +1086,7 @@ u1 *exceptions_handle_exception(java_objectheader *xptr, u1 *xpc, u1 *pv, u1 *sp
 
                o = *((java_objectheader **) (sp + issync - SIZEOF_VOID_P));
 
-               assert(o);
+               assert(o != NULL);
 
                builtin_monitorexit(o);
        }