Skip to content
Snippets Groups Projects
Commit d3c2c25d authored by dtc's avatar dtc
Browse files

Remove an unnecessary cast.

parent c9dd646e
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/monitor.c,v 1.10 1999/02/20 15:54:44 pw Exp $ */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/monitor.c,v 1.11 1999/02/22 11:41:10 dtc Exp $ */
#include <stdio.h>
#include <sys/types.h>
......@@ -413,7 +413,7 @@ static void catchers_cmd(char **ptr)
catch->entry_pc);
#endif
brief_print((lispobj)catch->tag);
catch = (struct catch_block *) catch->previous_catch;
catch = catch->previous_catch;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment