2da7a4d dlm_controld: fix may be used uninitialized

1 file Authored by aring 3 years ago, Committed by teigland 3 years ago,
    dlm_controld: fix may be used uninitialized
    
    This patch fixes the following compiler warning:
    
    config.c:269:26: warning: ‘val’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      269 |    o->file_int = val ? 1 : 0;
    
    The fix just init's val to 0 to have a fallback if parsing fails.
    
        
file modified
+1 -1