blob: c9536dfb666318468612701481d7216fd3b723e9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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;
}
|