diff options
author | Not Zed <NotZed@HelixCode.com> | 2000-11-30 19:50:11 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-11-30 19:50:11 +0800 |
commit | 3fa03e87ea186055823f2942db04317b79b90efe (patch) | |
tree | 695ef9a026c817ac57a21a7a3b84e6928f533249 /e-util/e-memory.h | |
parent | 9b49b3e25a171e87b556fe33d4f9f5fbf1bdae53 (diff) | |
download | gsoc2013-evolution-3fa03e87ea186055823f2942db04317b79b90efe.tar gsoc2013-evolution-3fa03e87ea186055823f2942db04317b79b90efe.tar.gz gsoc2013-evolution-3fa03e87ea186055823f2942db04317b79b90efe.tar.bz2 gsoc2013-evolution-3fa03e87ea186055823f2942db04317b79b90efe.tar.lz gsoc2013-evolution-3fa03e87ea186055823f2942db04317b79b90efe.tar.xz gsoc2013-evolution-3fa03e87ea186055823f2942db04317b79b90efe.tar.zst gsoc2013-evolution-3fa03e87ea186055823f2942db04317b79b90efe.zip |
Fix typename of args (for all funcs). (e_strv_set_ref): Assert the index
2000-11-30 Not Zed <NotZed@HelixCode.com>
* e-memory.c (e_strv_new): Fix typename of args (for all funcs).
(e_strv_set_ref): Assert the index is in range.
(e_strv_set_ref_free): "
(e_strv_set): "
(e_strv_get): "
svn path=/trunk/; revision=6733
Diffstat (limited to 'e-util/e-memory.h')
-rw-r--r-- | e-util/e-memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-memory.h b/e-util/e-memory.h index ce3a3b9dd1..911bb36b7a 100644 --- a/e-util/e-memory.h +++ b/e-util/e-memory.h @@ -52,7 +52,7 @@ void e_mempool_destroy(EMemPool *pool); /* strv's string arrays that can be efficiently modified and then compressed mainly for retrival */ /* building is relatively fast, once compressed it takes the minimum amount of memory possible to store */ -typedef struct _e_strv EStrv; +typedef struct _EStrv EStrv; EStrv *e_strv_new(int size); EStrv *e_strv_set_ref(EStrv *strv, int index, char *str); |