summaryrefslogtreecommitdiff
path: root/pjlib-util/src/pjlib-util/getopt.c
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2014-01-23 08:13:11 +0000
committerNanang Izzuddin <nanang@teluu.com>2014-01-23 08:13:11 +0000
commit102c9ba757dfa17896e4d59ff8ff03edbc4d7524 (patch)
tree35489aebaaa4faff9bddd9c5b273d1621caa12cd /pjlib-util/src/pjlib-util/getopt.c
parent19876d4d3296c6cb7b3e573bdfcc8fedf0072ac3 (diff)
Misc (re #1630): Fixed symbols that should not be exported (thanks Tzafrir Cohen for the patch).
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4713 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib-util/src/pjlib-util/getopt.c')
-rw-r--r--pjlib-util/src/pjlib-util/getopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib-util/src/pjlib-util/getopt.c b/pjlib-util/src/pjlib-util/getopt.c
index 6edf186a..0a560f02 100644
--- a/pjlib-util/src/pjlib-util/getopt.c
+++ b/pjlib-util/src/pjlib-util/getopt.c
@@ -111,7 +111,7 @@ int pj_optind = 1;
causes problems with re-calling pj_getopt as programs generally don't
know that. */
-int __getopt_initialized = 0;
+static int __getopt_initialized = 0;
/* The next char to be scanned in the option-element
in which the last option character we returned was found.