From b9b299aacea48a08350b5ee8730bee30f2724a63 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Wed, 26 Sep 2012 16:17:27 -0400 Subject: [PATCH] Fix compile --- qcsrc/common/notifications.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index 930b52485..4bf7b435b 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -26,7 +26,7 @@ #define VAR_TO_TEXT(var) #var #define CHECK_FIELD_AND_COUNT(field,count) if(!field) { field = (NOTIF_FIRST + count); ++count; } -#define CHECK_MAX_NOTIFICATIONS(name,count) if(count == NOTIF_MAX) { error(strcat("Maximum notifications hit: ", VAR_TO_TEXT(name), ": ", ftos(count), ".\n"); } +#define CHECK_MAX_NOTIFICATIONS(name,count) if(count == NOTIF_MAX) { error(strcat("Maximum notifications hit: ", VAR_TO_TEXT(name), ": ", ftos(count), ".\n")); } // ==================================== -- 2.39.2