chat: Adding serverCall as a reserved word.

Change-Id: I23053e7930c46b8865e5f33b6d99e2f194bbed59
diff --git a/Makefile b/Makefile
index 60a26e5..045cb3a 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@
 # Default browserify options: use sourcemaps.
 BROWSERIFY_OPTS := --debug
 # Names that should not be mangled by minification.
-RESERVED_NAMES := 'context,ctx,callback,cb,$$stream'
+RESERVED_NAMES := 'context,ctx,callback,cb,$$stream,serverCall'
 # Don't mangle RESERVED_NAMES, and screw ie8.
 MANGLE_OPTS := --mangle [--except $(RESERVED_NAMES) --screw_ie8 ]
 # Don't remove unused variables from function arguments, which could mess up signatures.