summaryrefslogtreecommitdiff
path: root/rpmio/rpmlua.c
diff options
context:
space:
mode:
authorniemeyer <devnull@localhost>2004-03-23 23:52:45 +0000
committerniemeyer <devnull@localhost>2004-03-23 23:52:45 +0000
commit47d16168ca1f3793a0a0e822763992d3a0356418 (patch)
treedb31217910178260e6b82ccf5d9559481fc4a68c /rpmio/rpmlua.c
parentb0ccb6fc076aedd8c3ee8dd1eb67dbce92c84e83 (diff)
downloadlibrpm-tizen-47d16168ca1f3793a0a0e822763992d3a0356418.tar.gz
librpm-tizen-47d16168ca1f3793a0a0e822763992d3a0356418.tar.bz2
librpm-tizen-47d16168ca1f3793a0a0e822763992d3a0356418.zip
Removing unwanted "static" attribute in "luaL_reg *lib". Using it
removes the prectability of initalization order in relation to lualibs. CVS patchset: 7187 CVS date: 2004/03/23 23:52:45
Diffstat (limited to 'rpmio/rpmlua.c')
-rw-r--r--rpmio/rpmlua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmio/rpmlua.c b/rpmio/rpmlua.c
index 7092e6083..1b30f7be5 100644
--- a/rpmio/rpmlua.c
+++ b/rpmio/rpmlua.c
@@ -52,7 +52,7 @@ rpmlua rpmluaNew()
{NULL, NULL},
};
/*@observer@*/ /*@unchecked@*/
- static const luaL_reg *lib = lualibs;
+ const luaL_reg *lib = lualibs;
/*@=readonlytrans@*/
lua->L = L;