aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/yasm/modules/preprocs/raw/raw-preproc.c
diff options
context:
space:
mode:
authorAleksandr <ivansduck@gmail.com>2022-02-10 16:47:52 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:52 +0300
commitea6c5b7f172becca389cacaff7d5f45f6adccbe6 (patch)
treed16cef493ac1e092b4a03ab9437ec06ffe3d188f /contrib/tools/yasm/modules/preprocs/raw/raw-preproc.c
parent37de222addabbef336dcaaea5f7c7645a629fc6d (diff)
downloadydb-ea6c5b7f172becca389cacaff7d5f45f6adccbe6.tar.gz
Restoring authorship annotation for Aleksandr <ivansduck@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'contrib/tools/yasm/modules/preprocs/raw/raw-preproc.c')
-rw-r--r--contrib/tools/yasm/modules/preprocs/raw/raw-preproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tools/yasm/modules/preprocs/raw/raw-preproc.c b/contrib/tools/yasm/modules/preprocs/raw/raw-preproc.c
index 9745b242fe..7c2cda084b 100644
--- a/contrib/tools/yasm/modules/preprocs/raw/raw-preproc.c
+++ b/contrib/tools/yasm/modules/preprocs/raw/raw-preproc.c
@@ -51,7 +51,7 @@ raw_preproc_create(const char *in_filename, yasm_symtab *symtab,
if (strcmp(in_filename, "-") != 0) {
f = fopen(in_filename, "r");
if (!f)
- yasm__fatal_missing_input_file( N_("Could not open input file"), in_filename );
+ yasm__fatal_missing_input_file( N_("Could not open input file"), in_filename );
}
else
f = stdin;