aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--findutils/grep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c
index c2a6a2187..4c9582e8c 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -376,7 +376,7 @@ static int file_action_grep(const char *filename, struct stat *statbuf, void* ma
376 FILE *file = fopen(filename, "r"); 376 FILE *file = fopen(filename, "r");
377 if (file == NULL) { 377 if (file == NULL) {
378 if (!SUPPRESS_ERR_MSGS) 378 if (!SUPPRESS_ERR_MSGS)
379 bb_simple_perror_msg(cur_file); 379 bb_simple_perror_msg(filename);
380 open_errors = 1; 380 open_errors = 1;
381 return 0; 381 return 0;
382 } 382 }