renaming to bpph
[ppastats.git] / src / fcache.c
index 1e10a19..acc2e7a 100644 (file)
@@ -83,17 +83,17 @@ char *fcache_get(const char *key)
        }
 
        content = file_get_content(path);
-       
+
        if (content)
                log_debug(_("file cache hit %s"), key);
        else
                log_debug(_("file cache miss %s %s"), key, path);
-       
+
        free(path);
-       
+
        return content;
 }
-       
+
 void fcache_put(const char *key, char *value)
 {
        char *path, *dir, *tmp;