Author: dim
Date: Thu May  7 08:22:47 2020
New Revision: 360774
URL: https://svnweb.freebsd.org/changeset/base/360774

Log:
  Fix misleading indentation warning:
  
  sys/dev/vxge/vxgehal/vxgehal-virtualpath.c:5550:6: error: misleading 
indentation; statement is not part of the previous 'if' 
[-Werror,-Wmisleading-indentation]
                                          return 
(VXGE_HAL_ERR_EVENT_MRPCIM_CRITICAL);
                                          ^
  sys/dev/vxge/vxgehal/vxgehal-virtualpath.c:5545:5: note: previous statement 
is here
                                  if (!skip_alarms)
                                  ^
  
  Direct commit to stable/11, since vxge(4) has been removed from FreeBSD
  12 and later.

Modified:
  stable/11/sys/dev/vxge/vxgehal/vxgehal-virtualpath.c

Modified: stable/11/sys/dev/vxge/vxgehal/vxgehal-virtualpath.c
==============================================================================
--- stable/11/sys/dev/vxge/vxgehal/vxgehal-virtualpath.c        Thu May  7 
08:11:36 2020        (r360773)
+++ stable/11/sys/dev/vxge/vxgehal/vxgehal-virtualpath.c        Thu May  7 
08:22:47 2020        (r360774)
@@ -5547,7 +5547,7 @@ __hal_vpath_alarm_process(__hal_virtualpath_t *vpath, 
                                            hldev->header.regh0,
                                            
VXGE_HAL_MRPCIM_TO_VPATH_ALARM_REG_ALARM,
                                            
&vpath->vp_reg->mrpcim_to_vpath_alarm_reg);
-                                       return 
(VXGE_HAL_ERR_EVENT_MRPCIM_CRITICAL);
+                               return (VXGE_HAL_ERR_EVENT_MRPCIM_CRITICAL);
                        }
 
                        if (!skip_alarms)
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to