diff options
author | David Barksdale <amatus.amongus@gmail.com> | 2011-09-11 00:06:24 -0500 |
---|---|---|
committer | David Barksdale <amatus.amongus@gmail.com> | 2011-09-11 00:06:24 -0500 |
commit | 3bffe02f2048ecc82995cba7b976de4400e1893c (patch) | |
tree | 22399da9144ec56a34daf6d11c7198ada16bd73e | |
parent | 722ccec3693c679b033fe1f085bf59bb5fe8eb15 (diff) |
Fixed indenting in Anjuta's editor.
-rw-r--r-- | src/storage/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/storage/main.c b/src/storage/main.c index 358e94b..29e1cbf 100644 --- a/src/storage/main.c +++ b/src/storage/main.c @@ -1,4 +1,4 @@ -/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */ +/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */ /* * main.c * Copyright (C) David Barksdale 2011 <amatus.amongus@gmail.com> @@ -281,8 +281,8 @@ static int dh(void *cls, struct MHD_Connection *connection, /* crfc */ &free_read_blocks_state); ret = MHD_queue_response(connection, MHD_HTTP_OK, s->response); if( MHD_NO == ret ) { - free_read_blocks_state(s); - } + free_read_blocks_state(s); + } } else if( strcmp(method, MHD_HTTP_METHOD_PUT) == 0 ) { int gen; char *e_hnk, *c_index; |