-rw-r--r-- | include/sitecing/sitecing_interface.h | 4 |
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 @@ -25,9 +25,9 @@ namespace sitecing { ostream *out; /** * Serial number of request being processed. */ - long serial; + unsigned long serial; /** * The default constructor doesn't do much. */ @@ -35,9 +35,9 @@ 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) {} }; } |