Change indentation to follow the updated standard.
Alot of mixed indentation. use 4 chars wide soft tabs.
This commit is contained in:
parent
9cc5420447
commit
f46ae1970b
51 changed files with 634 additions and 639 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -48,4 +48,3 @@ database (String);;
|
|||
Database to use
|
||||
table (String);;
|
||||
Tablename to use
|
||||
|
||||
|
|
|
|||
|
|
@ -129,4 +129,3 @@ size_t queue_num_items(queue_t q) {
|
|||
len += BLOCK_SIZE;
|
||||
return len;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -167,5 +167,3 @@ char** str_list_export(struct str_list *list) {
|
|||
|
||||
return out;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,8 @@ int main(int argc, char *argv[]) {
|
|||
"Filename: %s\n"
|
||||
"Directory: %u\n"
|
||||
"====================\n"
|
||||
, notify_event_typetostr(event), event->path, event->filename, event->dir);
|
||||
, notify_event_typetostr(event), event->path,
|
||||
event->filename, event->dir);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ void __assert_str(const char *file, int line, const char *func, const char *a, c
|
|||
|
||||
if (strcmp(a, b) != 0)
|
||||
__uexit(file, line, func, "\"%s\" != \"%s\"\n", a, b);
|
||||
|
||||
}
|
||||
|
||||
void utest_init_RNG() {
|
||||
|
|
|
|||
Reference in a new issue