fix clang warnings

This commit is contained in:
josch
2014-09-19 21:14:30 +02:00
parent b322f68ad2
commit e0ee1e5f8f
7 changed files with 13 additions and 22 deletions

View File

@@ -28,9 +28,7 @@
#include "mfconn.h"
#include "apicalls.h"
typedef struct _mfconn_s mfconn_t;
struct _mfconn_s
struct mfconn_t
{
char *server;
uint32_t secret_key;

View File

@@ -23,9 +23,7 @@
#include "file.h"
typedef struct _mfconn_s mfconn_t;
struct _mfconn_s;
typedef struct mfconn_t mfconn_t;
mfconn_t* mfconn_create(char *server, char *username, char *password, int app_id, char *app_key);