Pray, 'cuz nobody ever survives

This commit is contained in:
XANTRONIX Development 2019-02-04 22:53:58 -06:00
parent f13fdc38f6
commit 89d900b916
2 changed files with 4 additions and 4 deletions

View file

@ -32,7 +32,7 @@ typedef struct _hexagram_can_stream hexagram_can_stream;
hexagram_can_stream *hexagram_can_stream_open_fd(int fd); hexagram_can_stream *hexagram_can_stream_open_fd(int fd);
hexagram_can_stream *hexagram_can_stream_create(const char *file, hexagram_can_stream *hexagram_can_stream_create_file(const char *file,
const char *iface); const char *iface);
void hexagram_can_stream_destroy(hexagram_can_stream *stream); void hexagram_can_stream_destroy(hexagram_can_stream *stream);

View file

@ -58,7 +58,7 @@ error_malloc:
return NULL; return NULL;
} }
hexagram_can_stream *hexagram_can_stream_create(const char *file, hexagram_can_stream *hexagram_can_stream_create_file(const char *file,
const char *iface) { const char *iface) {
int fd; int fd;
hexagram_can_dump header; hexagram_can_dump header;