diff th_util.h @ 69:28156333ef4c

Cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 15 Nov 2012 19:22:42 +0200
parents 29f9651465c6
children cfb475e11b9f
line wrap: on
line diff
--- a/th_util.h	Thu Nov 15 19:22:06 2012 +0200
+++ b/th_util.h	Thu Nov 15 19:22:42 2012 +0200
@@ -94,7 +94,8 @@
 
 /* Doubly linked list handling
  */
-typedef struct _qlist_t {
+typedef struct _qlist_t
+{
     void *data;
     size_t num;
     struct _qlist_t *prev, *next;
@@ -125,7 +126,8 @@
 
 /* Ringbuffer implementation
  */
-typedef struct {
+typedef struct
+{
     char **data;
     int n, size;
     void (*deallocator)(void *);