Remove unnecessary ## which caused the build to fail with gcc 3.3.

Approved by:	maintainer (sobomax)
This commit is contained in:
Dag-Erling Smørgrav 2003-07-29 07:28:17 +00:00
parent 193e465caa
commit 70e5660c4e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=85834

View File

@ -154,3 +154,12 @@
graph_termio.c_lflag &= ~(ICANON | ECHO | ECHOE | ECHOK | ECHONL | NOFLSH);
if (__svgalib_nosigint)
@@ -3830,7 +3846,7 @@
#define ML_GETINT(x) \
ptr = strtok(NULL, " "); if(!ptr) break; \
- mmt.##x = atoi(ptr);
+ mmt.x = atoi(ptr);
ML_GETINT(HDisplay);
ML_GETINT(HSyncStart);