Skip to content

Commit

Permalink
Bump version to 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrisan committed Aug 19, 2019
1 parent 6e4d9e3 commit 49264d8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion client.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include <fcntl.h>
#include <signal.h>
#include <time.h>
#include <pthread.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netdb.h>
Expand Down
2 changes: 2 additions & 0 deletions common.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
#ifndef __COMMON_H
#define __COMMON_H

#include <pthread.h>

#define DEBUG(fmt, ...) if (log_level >= 2) fprintf(stderr, "%s: DEBUG: " fmt "\n", str_timestamp(), ##__VA_ARGS__)
#define INFO(fmt, ...) if (log_level >= 1) fprintf(stderr, "%s: INFO : " fmt "\n", str_timestamp(), ##__VA_ARGS__)
#define ERROR(fmt, ...) if (log_level >= 0) fprintf(stderr, "%s: ERROR: " fmt "\n", str_timestamp(), ##__VA_ARGS__)
Expand Down
1 change: 0 additions & 1 deletion streameye.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include <fcntl.h>
#include <signal.h>
#include <time.h>
#include <pthread.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/types.h>
Expand Down
2 changes: 1 addition & 1 deletion streameye.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include "client.h"

#define STREAM_EYE_VERSION "0.8"
#define STREAM_EYE_VERSION "0.9"

#define BOUNDARY_SEPARATOR "--FrameBoundary"

Expand Down

0 comments on commit 49264d8

Please sign in to comment.