Skip to content

Commit 2272efa

Browse files
committed
st.c (st_add_direct_with_hash): make it "static inline"
It was originally static inline, but seemed to be accidentally published at 8f675cd.
1 parent 28eefb3 commit 2272efa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

st.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ st_insert(st_table *tab, st_data_t key, st_data_t value)
11971197

11981198
/* Insert (KEY, VALUE, HASH) into table TAB. The table should not have
11991199
entry with KEY before the insertion. */
1200-
void
1200+
static inline void
12011201
st_add_direct_with_hash(st_table *tab,
12021202
st_data_t key, st_data_t value, st_hash_t hash)
12031203
{

0 commit comments

Comments
 (0)