subtle fix to -Fmicrosoft format adding in missing space

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11820 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2010-01-10 22:51:19 +00:00
commit 3b06d6e442

View file

@ -248,7 +248,7 @@ void Swig_error_msg_format(ErrorMessageFormat format) {
switch (format) {
case EMF_MICROSOFT:
fmt_line = "%s(%d) ";
fmt_eof = "%s(999999)"; /* Is there a special character for EOF? Just use a large number. */
fmt_eof = "%s(999999) "; /* Is there a special character for EOF? Just use a large number. */
break;
case EMF_STANDARD:
default: