From: Junio C Hamano Date: Tue, 30 Jun 2026 19:06:32 +0000 (-0700) Subject: amend! sequencer: remove unnecessary "or" in pick_one_commit() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffb009b251e47e0640232c6c76bf18566be16785;p=thirdparty%2Fgit.git amend! sequencer: remove unnecessary "or" in pick_one_commit() sequencer: remove unnecessary "or" in pick_one_commit() If error_with_patch(..., res, ...) succeeds then it returns "res", if it fails then it returns -1. This means that or-ing the return value with "res" is pointless as the result is the same as the return value. Signed-off-by: Phillip Wood Signed-off-by: Junio C Hamano ---