Sign in
googlers
/
jrn
/
git
/
4adceb5a299164aad1ef9794cdcbdb232ab10299
/
.
/
compat
/
fsmonitor
/
fsm-ipc-win32.c
blob: 8928fa93ce223968ab59279ddac50a3dd2b15239 [
file
] [
log
] [
blame
]
#include
"git-compat-util.h"
#include
"config.h"
#include
"fsmonitor-ipc.h"
#include
"path.h"
const
char
*
fsmonitor_ipc__get_path
(
struct
repository
*
r
)
{
static
char
*
ret
;
if
(!
ret
)
ret
=
git_pathdup
(
"fsmonitor--daemon.ipc"
);
return
ret
;
}