]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Wed Jan 28 12:00:26 CST 2009 Pekka Pessi <first.last@nokia.com>
authorMichael Jerris <mike@jerris.com>
Wed, 11 Feb 2009 17:14:57 +0000 (17:14 +0000)
committerMichael Jerris <mike@jerris.com>
Wed, 11 Feb 2009 17:14:57 +0000 (17:14 +0000)
  * su_timer.c: no more type-punning

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11849 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/sofia-sip/.update
libs/sofia-sip/libsofia-sip-ua/su/su_timer.c

index 6240813eaf621561d8238da5b0d8cb7d8a25b6e3..54b25b1b7c6f1c6831d99f5bcb68db8fb490152d 100644 (file)
@@ -1 +1 @@
-Wed Feb 11 11:14:27 CST 2009
+Wed Feb 11 11:14:50 CST 2009
index 535453276950daf6d46b648b7fb7c9f6c4a577bd..7accc788d967473ad46a89711c16d72a784646ea 100644 (file)
 #include "config.h"
 
 #include <sys/types.h>
-#include <sofia-sip/heap.h>
+#include "sofia-sip/heap.h"
 
 typedef union {
   void *private;
   /* Use for debugging */
-  struct timers_priv { size_t _size, _used; struct su_timer_s * _heap[2]; } *actual;
+  struct timers_priv {
+    size_t _size, _used;
+    struct su_timer_s * _heap[2];
+  } *actual;
 } su_timer_heap_t;
 
 #define SU_TIMER_QUEUE_T su_timer_heap_t