Changeset: 258e892ad1b2 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=258e892ad1b2
Modified Files:
        monetdb5/modules/mal/sysmon.c
Branch: default
Log Message:

Correcting typos in Exception strings
(recently added in 
https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=74e74fc25bec)


diffs (30 lines):

diff --git a/monetdb5/modules/mal/sysmon.c b/monetdb5/modules/mal/sysmon.c
--- a/monetdb5/modules/mal/sysmon.c
+++ b/monetdb5/modules/mal/sysmon.c
@@ -13,7 +13,7 @@
 #include "mtime.h"
 
 /* (c) M.L. Kersten
- * The query runtime monitor facility is hardwired 
+ * The query runtime monitor facility is hardwired
 */
 
 str
@@ -177,7 +177,7 @@ SYSMONresume(Client cntxt, MalBlkPtr mb,
                throw(MAL, "SYSMONresume", "type hge not handled, yet");
 #endif
        default:
-               throw(MAL, "SYSMONpause", "Pause requires integer");
+               throw(MAL, "SYSMONresume", "Resume requires integer");
        }
        MT_lock_set(&mal_delayLock);
        for ( i = 0; QRYqueue[i].tag; i++)
@@ -207,7 +207,7 @@ SYSMONstop(Client cntxt, MalBlkPtr mb, M
                throw(MAL, "SYSMONstop", "type hge not handled, yet");
 #endif
        default:
-               throw(MAL, "SYSMONpause", "Pause requires integer");
+               throw(MAL, "SYSMONstop", "Stop requires integer");
        }
        MT_lock_set(&mal_delayLock);
        for ( i = 0; QRYqueue[i].tag; i++)
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to