Skip to content

Commit 9e2a792

Browse files
committed
Fix use of =
1 parent f7f12bd commit 9e2a792

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

turbine/code/src/tcl/adlb/tcl-adlb.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1344,7 +1344,7 @@ extract_create_props(Tcl_Interp *interp, bool accept_id, int argstart,
13441344
TCL_CONDITION(argpos + 1 < objc, "Missing placement argument");
13451345
const char *placement_s = Tcl_GetString(objv[argpos + 1]);
13461346
adlb_code ac = ADLB_string_to_placement(placement_s, &props->placement);
1347-
TCL_CONDITION(ac = ADLB_SUCCESS, "invalid placement string %s",
1347+
TCL_CONDITION(ac == ADLB_SUCCESS, "invalid placement string %s",
13481348
placement_s);
13491349
argpos++;
13501350
}

0 commit comments

Comments
 (0)