Sign in
googlers
/
jrn
/
git
/
b0afdce5dab61f224fd66c13768facc36a7f8705
/
.
/
compat
/
fsmonitor
/
fsm-ipc-win32.c
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
;
}