diff options
Diffstat (limited to 'src/ctx.c')
-rw-r--r-- | src/ctx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ctx.c b/src/ctx.c index 35864d1..2612ffb 100644 --- a/src/ctx.c +++ b/src/ctx.c @@ -1,7 +1,7 @@ #include <assert.h> #include <string.h> -#include <libumumble.h> +#include <umumble/umumble.h> #include <uv.h> int mumble_ctx_init(mumble_ctx_t *ctx) @@ -19,7 +19,7 @@ int mumble_ctx_init(mumble_ctx_t *ctx) ctx->uv_connect_req.data = ctx; ctx->uv_tcp_socket.data = ctx; - ctx->status = READY; + ctx->status = MUMBLE_STATUS_READY; return 0; } |