diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-02-14 21:54:20 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-02-14 21:54:20 +0100 |
commit | c9a33e5e5d7e124feb86ccff08ea466faff53b26 (patch) | |
tree | 8a451a494fd002caf274e8341f6e4fa83a74473c /t/helper | |
parent | Merge branch 'mt/threaded-grep-in-object-store' (diff) | |
parent | fsmonitor: update documentation for hook version and watchman hooks (diff) | |
download | git-c9a33e5e5d7e124feb86ccff08ea466faff53b26.tar.xz git-c9a33e5e5d7e124feb86ccff08ea466faff53b26.zip |
Merge branch 'kw/fsmonitor-watchman-racefix'
A new version of fsmonitor-watchman hook has been introduced, to
avoid races.
* kw/fsmonitor-watchman-racefix:
fsmonitor: update documentation for hook version and watchman hooks
fsmonitor: add fsmonitor hook scripts for version 2
fsmonitor: handle version 2 of the hooks that will use opaque token
fsmonitor: change last update timestamp on the index_state to opaque token
Diffstat (limited to 't/helper')
-rw-r--r-- | t/helper/test-dump-fsmonitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-dump-fsmonitor.c b/t/helper/test-dump-fsmonitor.c index 2786f47088..975f0ac890 100644 --- a/t/helper/test-dump-fsmonitor.c +++ b/t/helper/test-dump-fsmonitor.c @@ -13,7 +13,7 @@ int cmd__dump_fsmonitor(int ac, const char **av) printf("no fsmonitor\n"); return 0; } - printf("fsmonitor last update %"PRIuMAX"\n", (uintmax_t)istate->fsmonitor_last_update); + printf("fsmonitor last update %s\n", istate->fsmonitor_last_update); for (i = 0; i < istate->cache_nr; i++) printf((istate->cache[i]->ce_flags & CE_FSMONITOR_VALID) ? "+" : "-"); |