Browse Source

corrected bug in RLS (freeing virtual subscriptions problem)

Vaclav Kubart 20 years ago
parent
commit
792165d764
2 changed files with 2 additions and 2 deletions
  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;