فهرست منبع

corrected bug in RLS (freeing virtual subscriptions problem)

Vaclav Kubart 20 سال پیش
والد
کامیت
792165d764
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      lib/cds/ptr_vector.c
  2. 1 1
      lib/cds/ptr_vector.h

+ 1 - 1
lib/cds/ptr_vector.c

@@ -23,7 +23,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "ptr_vector.h"
+#include <cds/ptr_vector.h>
 #include <stdio.h>
 
 int ptr_vector_add(ptr_vector_t *vector, void *ptr)

+ 1 - 1
lib/cds/ptr_vector.h

@@ -26,7 +26,7 @@
 #ifndef __PTR_VECTOR_H
 #define __PTR_VECTOR_H
 
-#include "vector.h"
+#include <cds/vector.h>
 
 typedef vector_t ptr_vector_t;