repo.or.cz
/
ruby.git
/
commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
raw
|
patch
|
inline
|
side by side
(parent:
a9f509e
)
Remove double semicolon at end of line in weakmap.c [ci skip]
author
Peter Zhu
<
[email protected]
>
Tue, 29 Oct 2024 19:20:09 +0000
(29 15:20 -0400)
committer
Peter Zhu
<
[email protected]
>
Tue, 29 Oct 2024 19:20:09 +0000
(29 15:20 -0400)
weakmap.c
patch
|
blob
|
blame
|
history
diff --git
a/weakmap.c
b/weakmap.c
index
fcf2801
..
a48179a
100644
(file)
--- a/
weakmap.c
+++ b/
weakmap.c
@@
-463,7
+463,7
@@
wmap_aset_replace(st_data_t *key, st_data_t *val, st_data_t new_key_ptr, int exi
else {
struct weakmap_entry *entry = xmalloc(sizeof(struct weakmap_entry));
- *key = (st_data_t)&entry->key;
;
+ *key = (st_data_t)&entry->key;
*val = (st_data_t)&entry->val;
}