diff options
| author | Tim Potter <tpot@samba.org> | 2003-04-15 03:09:35 +0000 |
|---|---|---|
| committer | Tim Potter <tpot@samba.org> | 2003-04-15 03:09:35 +0000 |
| commit | 8eca6c1bac9b7815e6d623cdf54b1391d065d00c (patch) | |
| tree | 8efb35ca080d353b7abae027445e27b858f3c002 | |
| parent | 1f68a389a3d923a6cf2989d732be489337f640cb (diff) | |
| download | samba-8eca6c1bac9b7815e6d623cdf54b1391d065d00c.tar.gz samba-8eca6c1bac9b7815e6d623cdf54b1391d065d00c.tar.bz2 samba-8eca6c1bac9b7815e6d623cdf54b1391d065d00c.zip | |
Merge:
>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 ad42419a840dc94dfd35a083e08a0ad9cbd8f2bf)
| -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 |
