From f9177135bcc2dd674e1e77105bd09c912937ea8f Mon Sep 17 00:00:00 2001 From: MS3FGX Date: Fri, 1 Nov 2013 21:33:33 -0400 Subject: [PATCH] Fix compiler warning --- ChangeLog | 3 +++ livelog.c | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3c66308..8c327b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +11/01/13: Released as Version 1.1.2 + Fix compiler warning for stable release. I'll break that later. + 10/29/13: Minor Bluelog theme touchups Add basic theming info to README.LIVE diff --git a/livelog.c b/livelog.c index 02a4db6..1e8826d 100644 --- a/livelog.c +++ b/livelog.c @@ -356,8 +356,9 @@ int main(int argc, char *argv[]) #endif // Read in environment variable - char* env_string; - env_string=getenv("QUERY_STRING"); + // Comment this to fix compiler warning until ready to implement + //char* env_string; + //env_string=getenv("QUERY_STRING"); // Print HTML head print_header(CSSFILE);