summaryrefslogtreecommitdiff
path: root/src/runtime/c/teyjus/system
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2012-08-03 12:30:01 +0000
committerkr.angelov <kr.angelov@gmail.com>2012-08-03 12:30:01 +0000
commit3601b796e51bd4a26383ac972ce2ccf575171979 (patch)
treeb2a1b29fad27ea94a65bbdd3da41612c9ceaf116 /src/runtime/c/teyjus/system
parent7f6c248bf1623a3e0ae5b1f4d7885bd4a54edc6e (diff)
fix some warnings in teyjus
Diffstat (limited to 'src/runtime/c/teyjus/system')
-rw-r--r--src/runtime/c/teyjus/system/error.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/c/teyjus/system/error.h b/src/runtime/c/teyjus/system/error.h
index 6fee02113..2db993270 100644
--- a/src/runtime/c/teyjus/system/error.h
+++ b/src/runtime/c/teyjus/system/error.h
@@ -114,11 +114,11 @@ EM_TRY
}
EM_CATCH
{
- un_foo(); /* clean up *
+ un_foo(); // clean up
if (EM_CurrentExnType == EM_FOOBAR)
- printf("foobar!"); /* stop the error here *
+ printf("foobar!"); // stop the error here
else
- EM_RETHROW(); /* let a later handler handle it *
+ EM_RETHROW(); // let a later handler handle it
}
*/