Commit 8ee159a4 authored by Alessandro Rubini's avatar Alessandro Rubini Committed by Aurelio Colosimo

ieee1588_types.h: Octet is better uint8_t than char

char may be signed or unsigned, so I'd better be safe here.
Meanwhile, I added some tabs to better line up the typedef stanza.
Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent f1dbdca0
......@@ -10,7 +10,7 @@
typedef enum {FALSE=0, TRUE} Boolean; /* FIXME really needed? */
typedef char Octet;
typedef uint8_t Octet;
typedef int8_t Integer8;
typedef int16_t Integer16;
typedef int32_t Integer32;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment