removed useless empty line
[ppastats.git] / src / lp_json.c
index 5d2d4cd..10b5927 100644 (file)
@@ -23,8 +23,8 @@
 #include <string.h>
 #include <time.h>
 
-#include "lp_json.h"
-#include "lp_ws.h"
+#include <lp_json.h>
+#include <lp_ws.h>
 #include <ptime.h>
 
 static time_t json_to_time(json_object *json)
@@ -37,7 +37,6 @@ static time_t json_to_time(json_object *json)
        if (!str)
                return -1;
 
-
        memset(&tm, 0, sizeof(struct tm));
        tm.tm_isdst = -1;
        ret = strptime(str, "%FT%T", &tm);