diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-12-04 14:28:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:21 -0500 |
commit | 9922c2d0357a89db4ee4abbb0beded6a0f24b010 (patch) | |
tree | e25fd2d4af884f4ba44cfed422361c1f990333f4 /source4/lib | |
parent | 9112a632f6791ffc3c3c1aadd214cbaba8fe816e (diff) | |
download | samba-9922c2d0357a89db4ee4abbb0beded6a0f24b010.tar.gz samba-9922c2d0357a89db4ee4abbb0beded6a0f24b010.tar.bz2 samba-9922c2d0357a89db4ee4abbb0beded6a0f24b010.zip |
r4064: use the same name for type on both ends
for long term we should remove all typedef's
metze
(This used to be commit 4b3f552cb373a0d91526412fc31699959c96a007)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/registry/tools/regpatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/tools/regpatch.c b/source4/lib/registry/tools/regpatch.c index 9b37b7952b..be60b96019 100644 --- a/source4/lib/registry/tools/regpatch.c +++ b/source4/lib/registry/tools/regpatch.c @@ -154,7 +154,7 @@ static void print_line(struct cmd_line *cl) */ static struct cmd_line *get_cmd_line(int fd) { - struct cmd_line *cl = smb_xmalloc_p(CMD_LINE); + CMD_LINE *cl = smb_xmalloc_p(CMD_LINE); int i = 0, rc; uint8_t ch; |