Commit ce52a6b2 authored by unknown's avatar unknown
Browse files

BUG#15734: Fix undefined awk behaviour breaking compilation on Debian.


bdb/dist/gen_rec.awk:
  Fix undefined behaviour.
parent 11b6afd3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
	}