diff options
author | Guillem Jover <guillem@debian.org> | 2011-02-11 05:21:36 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2011-02-11 07:46:26 +0100 |
commit | 0ff1ba98ce2dd4d8268e4154b7173fab49657045 (patch) | |
tree | 84dc21b288f1fbcb6576a98fc37ff98002b7ae3d /dpkg-split | |
parent | 2718f03bc2bb26de0e18b7bbcb20ac02b24c0719 (diff) | |
download | dpkg-0ff1ba98ce2dd4d8268e4154b7173fab49657045.tar.gz |
libdpkg: Rename cmdinfo arg members
The current names are not descriptive enough, so rename parg to arg_ptr,
farg to arg_func, and finally arg to arg_int (which disambiguates what
kind of data it's holding).
Diffstat (limited to 'dpkg-split')
-rw-r--r-- | dpkg-split/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpkg-split/main.c b/dpkg-split/main.c index c56367e00..70473d97c 100644 --- a/dpkg-split/main.c +++ b/dpkg-split/main.c @@ -170,7 +170,7 @@ int main(int argc, const char *const *argv) { } setvbuf(stdout,NULL,_IONBF,0); - action = (dofunction *)cipaction->farg; + action = (dofunction *)cipaction->arg_func; action(argv); m_output(stderr, _("<standard error>")); |