mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00
BUG#15734: Fix undefined awk behaviour breaking compilation on Debian.
This commit is contained in:
parent
11073be8d0
commit
a3eea41f0d
2
bdb/dist/gen_rec.awk
vendored
2
bdb/dist/gen_rec.awk
vendored
@ -180,7 +180,7 @@ BEGIN {
|
||||
t = types[i];
|
||||
if (modes[i] == "POINTER") {
|
||||
ndx = index(t, "*");
|
||||
t = substr(types[i], 0, ndx - 2);
|
||||
t = substr(types[i], 1, ndx - 2);
|
||||
}
|
||||
printf("\t%s\t%s;\n", t, vars[i]) >> HFILE
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user