Fix for coverity #29409 - Use char 0 instead of NULL
[supertux.git] / tools / tilemanager / LispWriter.cs
index 0ec3a38..b355c38 100644 (file)
@@ -1,3 +1,4 @@
+//  $Id$
 using System;
 using System.IO;
 using System.Collections;
@@ -6,7 +7,7 @@ public class LispWriter {
     private TextWriter stream;
     private int IndentDepth;
     private Stack lists = new Stack();
-    
+
     public LispWriter(TextWriter stream) {
         this.stream = stream;
     }