Archived
1
0
Fork 0

Change indentation to follow the updated standard.

Alot of mixed indentation. use 4 chars wide soft tabs.
This commit is contained in:
Henrik Hautakoski 2011-03-19 12:28:48 +02:00
parent 9cc5420447
commit f46ae1970b
51 changed files with 634 additions and 639 deletions

View file

@ -96,4 +96,3 @@ Things to keep in mind when modify or write code
------------------------------------------------ ------------------------------------------------
include and change the comment found in TEMPLATE file, at the top of the .c/.h file include and change the comment found in TEMPLATE file, at the top of the .c/.h file

View file

@ -48,4 +48,3 @@ database (String);;
Database to use Database to use
table (String);; table (String);;
Tablename to use Tablename to use

View file

@ -129,4 +129,3 @@ size_t queue_num_items(queue_t q) {
len += BLOCK_SIZE; len += BLOCK_SIZE;
return len; return len;
} }

View file

@ -167,5 +167,3 @@ char** str_list_export(struct str_list *list) {
return out; return out;
} }

View file

@ -29,7 +29,8 @@ int main(int argc, char *argv[]) {
"Filename: %s\n" "Filename: %s\n"
"Directory: %u\n" "Directory: %u\n"
"====================\n" "====================\n"
, notify_event_typetostr(event), event->path, event->filename, event->dir); , notify_event_typetostr(event), event->path,
event->filename, event->dir);
} }
return 0; return 0;

View file

@ -21,7 +21,6 @@ void __assert_str(const char *file, int line, const char *func, const char *a, c
if (strcmp(a, b) != 0) if (strcmp(a, b) != 0)
__uexit(file, line, func, "\"%s\" != \"%s\"\n", a, b); __uexit(file, line, func, "\"%s\" != \"%s\"\n", a, b);
} }
void utest_init_RNG() { void utest_init_RNG() {