Check-in [5b61ad3a4c]
Not logged in
Overview

SHA1 Hash:5b61ad3a4c7c9f2961fe9d4e3b91695b06cb4a4f
Date: 2008-05-29 14:38:13
User: drh
Comment:Add a missing semicolon to the previous checkin.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/cgi.c from [9a68d3734f] to [51ee933035].

@@ -427,11 +427,11 @@
 void cgi_replace_parameter(const char *zName, const char *zValue){
   int i;
   for(i=0; i<nUsedQP; i++){
     if( strcmp(aParamQP[i].zName,zName)==0 ){
       aParamQP[i].zValue = zValue;
-      return
+      return;
     }
   }
   cgi_set_parameter_nocopy(zName, zValue);
 }