[SATYR PATCH 1/3] Fix paths in public headers

Martin Milata mmilata at redhat.com
Thu Jun 27 16:35:52 UTC 2013


Signed-off-by: Martin Milata <mmilata at redhat.com>
---
 include/core/frame.h        | 2 +-
 include/core/stacktrace.h   | 2 +-
 include/core/thread.h       | 2 +-
 include/gdb/frame.h         | 2 +-
 include/gdb/stacktrace.h    | 2 +-
 include/gdb/thread.h        | 2 +-
 include/java/frame.h        | 2 +-
 include/java/stacktrace.h   | 2 +-
 include/java/thread.h       | 2 +-
 include/koops/frame.h       | 2 +-
 include/koops/stacktrace.h  | 2 +-
 include/python/frame.h      | 2 +-
 include/python/stacktrace.h | 2 +-
 13 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/include/core/frame.h b/include/core/frame.h
index c7817db..cc6c462 100644
--- a/include/core/frame.h
+++ b/include/core/frame.h
@@ -29,7 +29,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <inttypes.h>
 #include <stdbool.h>
 
diff --git a/include/core/stacktrace.h b/include/core/stacktrace.h
index 765bdec..2169ef7 100644
--- a/include/core/stacktrace.h
+++ b/include/core/stacktrace.h
@@ -29,7 +29,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <inttypes.h>
 
 struct sr_core_thread;
diff --git a/include/core/thread.h b/include/core/thread.h
index 23bfd59..42617e5 100644
--- a/include/core/thread.h
+++ b/include/core/thread.h
@@ -29,7 +29,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdbool.h>
 #include <inttypes.h>
 
diff --git a/include/gdb/frame.h b/include/gdb/frame.h
index a9b71bd..06dfc0e 100644
--- a/include/gdb/frame.h
+++ b/include/gdb/frame.h
@@ -29,7 +29,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdbool.h>
 #include <stdint.h>
 
diff --git a/include/gdb/stacktrace.h b/include/gdb/stacktrace.h
index f7eff36..ed63f82 100644
--- a/include/gdb/stacktrace.h
+++ b/include/gdb/stacktrace.h
@@ -30,7 +30,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdbool.h>
 
 struct sr_gdb_thread;
diff --git a/include/gdb/thread.h b/include/gdb/thread.h
index f601b8f..8970f65 100644
--- a/include/gdb/thread.h
+++ b/include/gdb/thread.h
@@ -29,7 +29,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdbool.h>
 #include <stdint.h>
 
diff --git a/include/java/frame.h b/include/java/frame.h
index b1be1c9..57eb96e 100644
--- a/include/java/frame.h
+++ b/include/java/frame.h
@@ -30,7 +30,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdbool.h>
 #include <stdint.h>
 
diff --git a/include/java/stacktrace.h b/include/java/stacktrace.h
index ef16918..e58c08c 100644
--- a/include/java/stacktrace.h
+++ b/include/java/stacktrace.h
@@ -33,7 +33,7 @@ extern "C" {
 struct sr_java_thread;
 struct sr_location;
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdint.h>
 
 struct sr_java_stacktrace
diff --git a/include/java/thread.h b/include/java/thread.h
index 0fd8c6e..cf10a6d 100644
--- a/include/java/thread.h
+++ b/include/java/thread.h
@@ -30,7 +30,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdbool.h>
 #include <stdint.h>
 
diff --git a/include/koops/frame.h b/include/koops/frame.h
index 269fb73..cc69904 100644
--- a/include/koops/frame.h
+++ b/include/koops/frame.h
@@ -30,7 +30,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdbool.h>
 #include <stdint.h>
 
diff --git a/include/koops/stacktrace.h b/include/koops/stacktrace.h
index 9d76cab..85bc755 100644
--- a/include/koops/stacktrace.h
+++ b/include/koops/stacktrace.h
@@ -30,7 +30,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdbool.h>
 #include <inttypes.h>
 #include <stddef.h>
diff --git a/include/python/frame.h b/include/python/frame.h
index a02a6b1..362b402 100644
--- a/include/python/frame.h
+++ b/include/python/frame.h
@@ -30,7 +30,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdbool.h>
 #include <stdint.h>
 
diff --git a/include/python/stacktrace.h b/include/python/stacktrace.h
index 22c9f02..6223dc1 100644
--- a/include/python/stacktrace.h
+++ b/include/python/stacktrace.h
@@ -30,7 +30,7 @@
 extern "C" {
 #endif
 
-#include "report_type.h"
+#include "../report_type.h"
 #include <stdint.h>
 
 struct sr_python_frame;
-- 
1.7.11.7



More information about the Crash-catcher mailing list