diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-04 18:09:14 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-04 18:09:14 +0200 |
commit | 6c684df061a3c09da94834c2d9008eb90811b242 (patch) | |
tree | c34ae59f2fcbeb19d86c170e569ba645921bc5d7 /src/xine-engine/broadcaster.c | |
parent | 92647a9d5a2e49de058a1169b465685ac9d9bdcb (diff) | |
download | xine-lib-nopadding_no_abi_change.tar.gz xine-lib-nopadding_no_abi_change.tar.bz2 |
Reorder and pack the structures that are defined inside compilation units instead of headers (and thus are not part of public ABI).nopadding_no_abi_change
Diffstat (limited to 'src/xine-engine/broadcaster.c')
-rw-r--r-- | src/xine-engine/broadcaster.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/broadcaster.c b/src/xine-engine/broadcaster.c index 3beacb226..8ab661d3e 100644 --- a/src/xine-engine/broadcaster.c +++ b/src/xine-engine/broadcaster.c @@ -73,9 +73,10 @@ struct broadcaster_s { int msock; /* master network socket */ xine_list_t *connections; /* active connections */ - int running; pthread_t manager_thread; pthread_mutex_t lock; + + int running; }; |