summaryrefslogtreecommitdiffabout
Side-by-side diff
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 {
/**
* Serial number of request being processed.
*/
- long serial;
+ unsigned long serial;
/**
* The default constructor doesn't do much.
@@ -36,7 +36,7 @@ namespace sitecing {
* The constructor initializes the output stream pointer.
* @param o the value to initialize the output stream pointer with.
*/
- sitecing_interface(ostream* o) : out(o) {}
+ sitecing_interface(ostream* o) : out(o), serial(0) {}
};
}