summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/list.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-05-16 13:27:46 +0000
committerBenny Prijono <bennylp@teluu.com>2008-05-16 13:27:46 +0000
commit973f06d4e3bc295be5bf96618e8c463dcfadc672 (patch)
tree612c82af67e1ee54c37e2eab08342c610fedd4b4 /pjlib/include/pj/list.h
parente274938dc9a1bd0a9b4d7fcb3d9f3a81dc8ae37e (diff)
Modified pj_list_size() to take const argument instead
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1958 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/list.h')
-rw-r--r--pjlib/include/pj/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/include/pj/list.h b/pjlib/include/pj/list.h
index 5e0a4ab7..f6f2c167 100644
--- a/pjlib/include/pj/list.h
+++ b/pjlib/include/pj/list.h
@@ -256,7 +256,7 @@ PJ_IDECL(pj_list_type*) pj_list_search(pj_list_type *list, void *value,
*
* @return Number of elements.
*/
-PJ_IDECL(pj_size_t) pj_list_size(pj_list_type *list);
+PJ_IDECL(pj_size_t) pj_list_size(const pj_list_type *list);
/**