2
0
Fork 0

Fix two small typos in idlist.h comments

This commit is contained in:
Thomas Porzelt 2009-05-13 12:56:46 +02:00
parent 7c27d1b342
commit 0e001f21e5
1 changed files with 2 additions and 2 deletions

View File

@ -29,10 +29,10 @@ LI_API idlist* idlist_new(gint max_ids);
/* free idlist */
LI_API void idlist_free(idlist *l);
/* requst new id; return -1 if no id is available, valid ids are always > 0 */
/* request new id; return -1 if no id is available, valid ids are always > 0 */
LI_API gint idlist_get(idlist *l);
/* release id. never release a id more than once! */
/* release id. never release an id more than once! */
LI_API void idlist_put(idlist *l, gint id);
#endif