From: Mark Vitale Date: Tue, 11 Sep 2018 20:29:59 +0000 (-0400) Subject: butc: repair build error X-Git-Tag: upstream/1.8.3^2~37 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=3143627f9b7f91743a85cd8fd8f00f913a31f17c;p=packages%2Fo%2Fopenafs.git butc: repair build error Commit c43169fd36348783b1a5a55c5bb05317e86eef82 introduced a build error by invoking TLog with an extraneous set of internal parentheses. Remove the offending parentheses. Reviewed-on: https://gerrit.openafs.org/13311 Tested-by: BuildBot Reviewed-by: Benjamin Kaduk (cherry picked from commit 91bab84e7a3b7de2591c475ba4912b0db8899f05) Change-Id: I06df561daf37330e6fdd9c9d41b55daa4d6b3886 Reviewed-on: https://gerrit.openafs.org/13328 Tested-by: BuildBot Reviewed-by: Michael Meffie Reviewed-by: Marcio Brito Barbosa Reviewed-by: Cheyenne Wills Reviewed-by: Andrew Deason Reviewed-by: Stephan Wiesand --- diff --git a/src/butc/tcmain.c b/src/butc/tcmain.c index c5399396e..cbd135b09 100644 --- a/src/butc/tcmain.c +++ b/src/butc/tcmain.c @@ -835,8 +835,8 @@ tc_IsLocalRealmMatch(void *rock, char *name, char *inst, char *cell) code = afsconf_IsLocalRealmMatch(dir, &islocal, name, inst, cell); if (code) { - TLog(0, ("Failed local realm check; code=%d, name=%s, inst=%s, cell=%s\n", - code, name, inst, cell)); + TLog(0, "Failed local realm check; code=%d, name=%s, inst=%s, cell=%s\n", + code, name, inst, cell); } return islocal; }