Skip to content

Commit

Permalink
Quieten an incorrect compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebrady committed Aug 28, 2014
1 parent f6df7e9 commit 0a583f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/shairport
/shairport-sync
/*.o
/*~
/config.mk
Expand Down
2 changes: 1 addition & 1 deletion rtsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ static int is_playing = 0;
// it monitors the request variable (at least when interrupted)
static pthread_mutex_t playing_mutex = PTHREAD_MUTEX_INITIALIZER;
static int please_shutdown = 0;
static pthread_t playing_thread = NULL;
static pthread_t playing_thread = 0;

typedef struct {
int fd;
Expand Down

0 comments on commit 0a583f1

Please sign in to comment.