warning fixed for lttvwindow and controlflow view
[lttv.git] / ltt / branches / poly / lttv / lttv / hook.h
index 77a5dd5f59194ede727e5760c55d9f62f741ab88..1227203514dd20a18d51cffded051b56fcb73bcd 100644 (file)
@@ -22,6 +22,7 @@
 #define HOOK_H
 
 #include <glib.h>
+#include <ltt/compiler.h>
 
 /* A hook is a function to call with the supplied hook data, and with 
    call site specific data (e.g., hooks for events are called with a 
@@ -147,7 +148,7 @@ unsigned lttv_hooks_by_id_max_id(LttvHooksById *h);
 static inline LttvHooks *lttv_hooks_by_id_get(LttvHooksById *h, unsigned id)
 {
   LttvHooks *ret;
-  if(id < h->len) ret = h->pdata[id];
+  if(likely(id < h->len)) ret = h->pdata[id];
   else ret = NULL;
 
   return ret;
This page took 0.022965 seconds and 4 git commands to generate.