websocket: Include proper type header

inttypes.h contains macro for format string while
stdint.h more specifically contains type definitions (like uint8_t).

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Uri Lublin <uril@redhat.com>
This commit is contained in:
Frediano Ziglio 2019-07-17 12:32:23 +01:00
parent 4894d58ace
commit 642b1683ae

View File

@ -18,7 +18,7 @@
#ifndef WEBSOCKET_H_
#define WEBSOCKET_H_
#include <inttypes.h>
#include <stdint.h>
#include "sys-socket.h"