citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 72528a3ad5e0a74e67e4cf3294762e6773c40d12
parent 6079a2b7ab4e6068822b4c56f44b78122d879d81
Author: Kyle Milz <kyle@0x30.net>
Date:   Mon, 13 Jun 2016 23:32:36 -0600

lib: sort local variables

Diffstat:
Mlib/runtime.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/runtime.c b/lib/runtime.c @@ -29,10 +29,10 @@ int xwrite(int d, const void *buf, size_t bytes_total); void * control_thread(void *arg) { - int fd; - uint8_t response; struct sockaddr_un addr; char *viewer_sock = NULL; + int fd; + uint8_t response; if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) err(1, "socket");