From ff2e9d85d61f2f51793acbdb4bad68d48cc8bb85 Mon Sep 17 00:00:00 2001 From: Patrick Steinhardt Date: Wed, 1 Apr 2026 01:57:48 +0200 Subject: odb: rename `odb_write_object()` flags Rename `odb_write_object()` flags to be properly prefixed with the function name. Signed-off-by: Patrick Steinhardt Signed-off-by: Junio C Hamano --- odb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'odb.h') diff --git a/odb.h b/odb.h index 09affaf6a5..083c25609e 100644 --- a/odb.h +++ b/odb.h @@ -568,12 +568,12 @@ enum { * changes that so that the object will be written as a loose object * and persisted. */ - WRITE_OBJECT_PERSIST = (1 << 0), + ODB_WRITE_OBJECT_PERSIST = (1 << 0), /* * Do not print an error in case something goes wrong. */ - WRITE_OBJECT_SILENT = (1 << 1), + ODB_WRITE_OBJECT_SILENT = (1 << 1), }; /* -- cgit v1.3