fix bug introduced into module-compiled-exports

svn: r17589
This commit is contained in:
Matthew Flatt 2010-01-09 14:48:51 +00:00
parent 349c15d478
commit 58e6d2426a

View File

@ -2760,7 +2760,7 @@ static Scheme_Object *module_compiled_exports(int argc, Scheme_Object *argv[])
m = scheme_extract_compiled_module(argv[0]);
if (m)
extract_compiled_exports(m);
return extract_compiled_exports(m);
scheme_wrong_type("module-compiled-exports", "compiled module declaration", 0, argc, argv);
return NULL;