efreetd: remove a tentative global variable definition

Summary:
there is a global variable that is defined tentatively.
this patch modify it not to be tentitive explictly.

Reviewers: raster, cedric, zmike

Reviewed By: raster, zmike

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8551
This commit is contained in:
Wonki Kim 2019-04-04 09:14:08 -04:00 committed by Mike Blumenkrantz
parent 25b5eeaf11
commit fa97d86d0f
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@
#include "efreetd_ipc.h"
int efreetd_log_dom = -1;
Eina_Mempool *efreetd_mp_stat = NULL;
void
quit(void)

View File

@ -1,7 +1,7 @@
#ifndef __EFREETD_CACHE_H
#define __EFREETD_CACHE_H
Eina_Mempool *efreetd_mp_stat;
extern Eina_Mempool *efreetd_mp_stat;
void cache_desktop_dir_add(const char *dir);
void cache_icon_dir_add(const char *dir);