src/states.c
changeset 195 1510dd61ead0
parent 183 4cddad17c81f
child 204 44ce74232ccb
--- a/src/states.c	Sat May 12 23:07:48 2007 +0200
+++ b/src/states.c	Sun May 13 10:29:08 2007 +0200
@@ -75,11 +75,11 @@
 
 #define StartOrStop(CommType, FuncStart, FuncStop) \
 	if(newCommunicationState->CommType && !d->CurrentCommunicationState.CommType){\
-		MSG_ERR(0x9999,#FuncStart, 9999);\
+		MSG_WAR(0x9999,#FuncStart, 9999);\
 		d->CurrentCommunicationState.CommType = 1;\
 		FuncStart;\
 	}else if(!newCommunicationState->CommType && d->CurrentCommunicationState.CommType){\
-		MSG_ERR(0x9999,#FuncStop, 9999);\
+		MSG_WAR(0x9999,#FuncStop, 9999);\
 		d->CurrentCommunicationState.CommType = 0;\
 		FuncStop;\
 	}