diff options
| author | 2024-05-21 14:12:15 +0200 | |
|---|---|---|
| committer | 2024-05-21 14:12:15 +0200 | |
| commit | 4777fc86cb962917a8f34afb3bfa40f26290815d (patch) | |
| tree | 268c078531a018f07c1b6d029f14f87134805f7b /xs_set.h | |
| parent | Version 2.53 RELEASED. (diff) | |
| download | penes-snac2-4777fc86cb962917a8f34afb3bfa40f26290815d.tar.gz penes-snac2-4777fc86cb962917a8f34afb3bfa40f26290815d.tar.xz penes-snac2-4777fc86cb962917a8f34afb3bfa40f26290815d.zip | |
Added const everywhere.
Diffstat (limited to 'xs_set.h')
| -rw-r--r-- | xs_set.h | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -104,7 +104,7 @@ int xs_set_add(xs_set *s, const xs_val *data) | |||
| 104 | 104 | ||
| 105 | /* if it's new, add the data */ | 105 | /* if it's new, add the data */ |
| 106 | if (ret) | 106 | if (ret) |
| 107 | s->list = xs_list_append_m(s->list, data, xs_size(data)); | 107 | s->list = xs_list_append(s->list, data); |
| 108 | 108 | ||
| 109 | return ret; | 109 | return ret; |
| 110 | } | 110 | } |