Correct typo in check for null device

Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
Evan Lezar 2022-01-21 17:00:55 +01:00
parent ce2b0dfdf0
commit 5a6860adbf

View File

@ -45,7 +45,7 @@ func main() {
os.Exit(1) os.Exit(1)
} }
if cfg.DebugFilePath != "" && cfg.DebugFilePath != "/dev/nul" { if cfg.DebugFilePath != "" && cfg.DebugFilePath != "/dev/null" {
logFile, err := os.OpenFile(cfg.DebugFilePath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) logFile, err := os.OpenFile(cfg.DebugFilePath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
if err != nil { if err != nil {
logger.Errorf("Error opening debug log file: %v", err) logger.Errorf("Error opening debug log file: %v", err)