diff options
author | Tim Potter <tpot@samba.org> | 2003-04-15 02:47:01 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-15 02:47:01 +0000 |
commit | c34e823fe4b71fc4f27a1255c1db6f0425f5cab7 (patch) | |
tree | 253a038ea87a9677551dc8eb69e6756b95e9e122 /source3/include/rpc_echo.h | |
parent | 351ffdef4df708e7d440361cfdced48c766b03c1 (diff) | |
download | samba-c34e823fe4b71fc4f27a1255c1db6f0425f5cab7.tar.gz samba-c34e823fe4b71fc4f27a1255c1db6f0425f5cab7.tar.bz2 samba-c34e823fe4b71fc4f27a1255c1db6f0425f5cab7.zip |
A struct must contain at least one declaration according to C99, but
gcc allows it to be empty. Should fix miscellaneous breakage on
the compile farm.
(This used to be commit b92d57f784fb43e420cf65b9392d175ad4483f28)
Diffstat (limited to 'source3/include/rpc_echo.h')
-rw-r--r-- | source3/include/rpc_echo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/rpc_echo.h b/source3/include/rpc_echo.h index 8fa389cf56..6b4ea6abfb 100644 --- a/source3/include/rpc_echo.h +++ b/source3/include/rpc_echo.h @@ -69,6 +69,7 @@ typedef struct echo_q_sink_data typedef struct echo_r_sink_data { + int dummy; /* unused */ } ECHO_R_SINK_DATA; #endif |