diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-09-01 20:19:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:03:22 -0500 |
commit | c37fa61abcfceb36c6f5e25ed20f43019ea8bd3f (patch) | |
tree | 02cc511cbcdb45208816db31fa5d06d97c800dfa /source4/lib/charset | |
parent | 26ed05364d3172f17a0d4e1159e39a830f8a7217 (diff) | |
download | samba-c37fa61abcfceb36c6f5e25ed20f43019ea8bd3f.tar.gz samba-c37fa61abcfceb36c6f5e25ed20f43019ea8bd3f.tar.bz2 samba-c37fa61abcfceb36c6f5e25ed20f43019ea8bd3f.zip |
r24867: Avoid anonymous struct. Patch from Brad Hards.
(This used to be commit e7866857fbdc9b7b7bebcecd41f34f54b37f3b04)
Diffstat (limited to 'source4/lib/charset')
-rw-r--r-- | source4/lib/charset/charset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/charset/charset.h b/source4/lib/charset/charset.h index 6943a60182..91408365ac 100644 --- a/source4/lib/charset/charset.h +++ b/source4/lib/charset/charset.h @@ -49,7 +49,7 @@ typedef uint32_t codepoint_t; /* generic iconv conversion structure */ -typedef struct { +typedef struct smb_iconv_s { size_t (*direct)(void *cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft); size_t (*pull)(void *cd, const char **inbuf, size_t *inbytesleft, |