diff options
| author | Junio C Hamano <gitster@pobox.com> | 2021-12-10 14:35:13 -0800 | 
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-12-10 14:35:13 -0800 | 
| commit | b8148376a2dbb02ade419c2e3fdc478c1f0981dd (patch) | |
| tree | 93c26104ae0f7c1052b3369263c61187745f4fb5 /refs/packed-backend.c | |
| parent | cdac0caddd21c9469ca09f9942cb0e9bc3649204 (diff) | |
| parent | 7b089120d9e0065978da461f8ccf42000e6760a4 (diff) | |
Merge branch 'hn/create-reflog-simplify'
A small simplification of API.
* hn/create-reflog-simplify:
  refs: drop force_create argument of create_reflog API
Diffstat (limited to 'refs/packed-backend.c')
| -rw-r--r-- | refs/packed-backend.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/refs/packed-backend.c b/refs/packed-backend.c index 9da932a540..67152c664e 100644 --- a/refs/packed-backend.c +++ b/refs/packed-backend.c @@ -1629,8 +1629,7 @@ static int packed_reflog_exists(struct ref_store *ref_store,  }  static int packed_create_reflog(struct ref_store *ref_store, -			       const char *refname, int force_create, -			       struct strbuf *err) +				const char *refname, struct strbuf *err)  {  	BUG("packed reference store does not support reflogs");  }  | 
