Removed the unused second argument from the do_template() macro
[citadel.git] / webcit / subst.h
index 906768316401a624f9ea6c257eaa9e2e1e5275ce..ed0d4500a2e457372d0e789da51d266350280958 100644 (file)
@@ -359,7 +359,7 @@ void RegisterSortFunc(const char *name, long len,
 
 void dbg_print_longvector(long *LongVector);
 
-#define do_template(a, b) DoTemplate(a, sizeof(a) -1, NULL, &NoCtx)
+#define do_template(a) DoTemplate(a, sizeof(a) -1, NULL, &NoCtx)
 const StrBuf *DoTemplate(const char *templatename, long len, StrBuf *Target, WCTemplputParams *TP);
 void url_do_template(void);