diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-08-23 11:29:49 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-08-25 10:43:01 -0700 |
commit | 4c31c0113901fd3cbad8ab5c66efbc221d49d378 (patch) | |
tree | 5ceb1691f06835c7b2c0cd0ababb1173a86ac12c /git-access.c | |
parent | b8575221b19bf0a77319318a505a27c00e33e375 (diff) | |
download | subsurface-4c31c0113901fd3cbad8ab5c66efbc221d49d378.tar.gz |
Cloud storage: better error message for dirty state
Tell us WHAT is wrong with the state.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'git-access.c')
-rw-r--r-- | git-access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-access.c b/git-access.c index 3602b80f0..08000ed88 100644 --- a/git-access.c +++ b/git-access.c @@ -69,7 +69,7 @@ static int check_clean(const char *path, unsigned int status, void *payload) status &= ~GIT_STATUS_CURRENT | GIT_STATUS_IGNORED; if (!status) return 0; - report_error("WARNING: Git cache directory modified (path %s)", path); + report_error("WARNING: Git cache directory modified (path %s) status %0x", path, status); return 1; } |