blob: c9536dfb666318468612701481d7216fd3b723e9 [file] [log] [blame]
#include "git-compat-util.h"
#include "config.h"
#include "fsmonitor-ipc.h"
const char *fsmonitor_ipc__get_path(struct repository *r) {
static char *ret;
if (!ret)
ret = git_pathdup("fsmonitor--daemon.ipc");
return ret;
}