diff options
Diffstat (limited to 'elf/genrtldtbl.awk')
-rw-r--r-- | elf/genrtldtbl.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/genrtldtbl.awk b/elf/genrtldtbl.awk index 63ada003f6..54cdc8c589 100644 --- a/elf/genrtldtbl.awk +++ b/elf/genrtldtbl.awk @@ -12,7 +12,7 @@ BEGIN { END { for (i = 0; i < count; ++i) { printf ("static struct r_search_path_elem rtld_search_dir%d =\n", i+1); - printf (" { \"%s/\", %d, unknown, 0, nonexisting, ", + printf (" { \"%s/\", %d, unknown, 0, nonexisting, NULL, NULL, ", dir[i], length (dir[i]) + 1); if (i== 0) printf ("NULL };\n"); |