diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/comm.h | 2 | ||||
-rw-r--r-- | src/track.c | 2 | ||||
-rw-r--r-- | src/track.h (renamed from src/comm_structs.h) | 6 |
3 files changed, 5 insertions, 5 deletions
@@ -25,7 +25,7 @@ #ifndef _LINPICKER_COMM_H_ #define _LINPICKER_COMM_H_ -#include "comm_structs.h" +#include "track.h" #include "client.h" #include "buffer.h" diff --git a/src/track.c b/src/track.c index cd98893..34dd4e8 100644 --- a/src/track.c +++ b/src/track.c @@ -49,7 +49,7 @@ #include "libvchan.h" #include "common.h" -#include "comm_structs.h" +#include "track.h" static struct libvchan *ctrl; diff --git a/src/comm_structs.h b/src/track.h index b17a598..aa93a05 100644 --- a/src/comm_structs.h +++ b/src/track.h @@ -22,8 +22,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef _LINPICKER_COMM_STRUCTS_H_ -#define _LINPICKER_COMM_STRUCTS_H_ +#ifndef _LINPICKER_TRACK_H_ +#define _LINPICKER_TRACK_H_ #include <stdint.h> @@ -56,4 +56,4 @@ struct lin_message { uint32_t h; }; -#endif /* _LINPICKER_COMM_STRUCTS_H_ */ +#endif /* _LINPICKER_TRACK_H_ */ |