mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
zipl/src/scan.c: Fix [-Wparentheses] warning
Fix warning of redundant parentheses. Acked-by: Ilya Leoshkevich <iii@linux.ibm.com> Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Richie Buturla <richie@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
This commit is contained in:
committed by
Steffen Eiden
parent
ae8fa4371f
commit
8e315c4401
@@ -1200,7 +1200,7 @@ scan_check_target_data(char* keyword[], int* line)
|
||||
return -1;
|
||||
case target_type_scsi:
|
||||
case target_type_fba:
|
||||
if ((keyword[(int) scan_keyword_targetgeometry] == 0))
|
||||
if (keyword[(int) scan_keyword_targetgeometry] == 0)
|
||||
break;
|
||||
if (line != NULL)
|
||||
error_reason("Line %d: keyword "
|
||||
|
||||
Reference in New Issue
Block a user