aboutsummaryrefslogtreecommitdiff
path: root/src/pj_initcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pj_initcache.c')
-rw-r--r--src/pj_initcache.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pj_initcache.c b/src/pj_initcache.c
index a0593138..3c347e4b 100644
--- a/src/pj_initcache.c
+++ b/src/pj_initcache.c
@@ -25,9 +25,10 @@
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
-#include "projects.h"
#include <string.h>
+#include "projects.h"
+
static int cache_count = 0;
static int cache_alloc = 0;
static char **cache_key = NULL;
@@ -51,7 +52,7 @@ paralist *pj_clone_paralist( const paralist *list)
newitem->used = 0;
newitem->next = 0;
strcpy( newitem->param, list->param );
-
+
if( list_copy == NULL )
list_copy = newitem;
else