Skip to content

Commit a5d0af8

Browse files
committed
Fix -Wparentheses in tdr
1 parent 2697f5e commit a5d0af8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/alice/tdr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ void TDR_list_limbo(FB_API_HANDLE handle, const TEXT* name, const SINT64 switche
311311
ALICE_print(71, SafeArg() << id);
312312
// msg 71: Transaction %d is in limbo.
313313
}
314-
if (trans = MET_get_transaction(status_vector, handle, id))
314+
if ((trans = MET_get_transaction(status_vector, handle, id)))
315315
{
316316
if (id > TraNumber(MAX_SLONG))
317317
tdgbl->uSvc->putSInt64(isc_spb_multi_tra_id_64, id);

0 commit comments

Comments
 (0)