summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--include/sitecing/sitecing_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sitecing/sitecing_interface.h b/include/sitecing/sitecing_interface.h
index f0210d6..a0e1b8a 100644
--- a/include/sitecing/sitecing_interface.h
+++ b/include/sitecing/sitecing_interface.h
@@ -26,7 +26,7 @@ namespace sitecing {
26 /** 26 /**
27 * Serial number of request being processed. 27 * Serial number of request being processed.
28 */ 28 */
29 long serial; 29 unsigned long serial;
30 30
31 /** 31 /**
32 * The default constructor doesn't do much. 32 * The default constructor doesn't do much.
@@ -36,7 +36,7 @@ namespace sitecing {
36 * The constructor initializes the output stream pointer. 36 * The constructor initializes the output stream pointer.
37 * @param o the value to initialize the output stream pointer with. 37 * @param o the value to initialize the output stream pointer with.
38 */ 38 */
39 sitecing_interface(ostream* o) : out(o) {} 39 sitecing_interface(ostream* o) : out(o), serial(0) {}
40 }; 40 };
41 41
42} 42}