Skip to content

Commit

Permalink
test: fix undefined macro error
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Jan 30, 2012
1 parent 2ce0058 commit d1a0e8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-ipc-threads.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static void close_cb(uv_handle_t* handle) {

static void on_connection(uv_stream_t* server, int status) {
int r;
worker_t* worker = CONTAINING_RECORD(server, worker_t, server);
worker_t* worker = container_of(server, worker_t, server);

if (!worker->connection_accepted) {
/*
Expand Down

0 comments on commit d1a0e8e

Please sign in to comment.