1
0
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:
knielsen@mysql.com 2005-12-14 13:09:37 +01:00
parent 11073be8d0
commit a3eea41f0d

View File

@ -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
}