# HG changeset patch # User greg # Date 1211532775 -7200 # Node ID ad2d8431104e36f3774a4e8c0d4e323f1080821f # Parent 94855f7b08a95bad2d60cbd93d202d7ad32fa373 bug fix diff -r 94855f7b08a9 -r ad2d8431104e plugins/c_ext/c_ext.py --- a/plugins/c_ext/c_ext.py Fri May 23 10:31:26 2008 +0200 +++ b/plugins/c_ext/c_ext.py Fri May 23 10:52:55 2008 +0200 @@ -281,7 +281,7 @@ text += "#endif\n\n" text += "/* User variables reference */\n" for var in vars: - text += "#define %s %s;\n"%(var["Name"], var["location"]) + text += "#define %s %s\n"%(var["Name"], var["location"]) text += "\n" # Adding user global variables and routines