[pisa-src] r1225 - trunk/libpisa/conmgr.c

  • From: Thomas Jansen <mithi@xxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Mon, 19 Oct 2009 11:35:51 +0200

Author: tjansen
Date: Mon Oct 19 11:35:50 2009
New Revision: 1225

Log:
Marked internal function pisa_conmgr_new as static.

Modified:
   trunk/libpisa/conmgr.c

Modified: trunk/libpisa/conmgr.c
==============================================================================
--- trunk/libpisa/conmgr.c      Mon Oct 19 11:35:11 2009        (r1224)
+++ trunk/libpisa/conmgr.c      Mon Oct 19 11:35:50 2009        (r1225)
@@ -26,7 +26,7 @@
  * @return new Instance, all member variables set to 0 or NULL
  * @sa pisa_conmgr_free
  */
-pisa_conmgr_entry* pisa_conmgr_new(void)
+static pisa_conmgr_entry* pisa_conmgr_new(void)
 {
        pisa_conmgr_entry* ret = calloc(sizeof(pisa_conmgr_entry), 1);
        assert(ret != NULL);

Other related posts:

  • » [pisa-src] r1225 - trunk/libpisa/conmgr.c - Thomas Jansen