-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkg/ndn-riot: add patch for changed kernel_pid_t location
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
pkg/ndn-riot/patches/0003-adapt-to-moved-kernel_pid_t-location.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
From 51d973f2a0a04a716af8260c62fb5045356a30a5 Mon Sep 17 00:00:00 2001 | ||
From: Kaspar Schleiser <[email protected]> | ||
Date: Mon, 23 Nov 2020 12:44:54 +0100 | ||
Subject: [PATCH] adapt to moved kernel_pid_t location | ||
|
||
--- | ||
face-table.h | 2 +- | ||
ndn.h | 2 +- | ||
2 files changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/face-table.h b/face-table.h | ||
index 28b44a5c02..fb0c39b083 100644 | ||
--- a/face-table.h | ||
+++ b/face-table.h | ||
@@ -20,7 +20,7 @@ | ||
#ifndef NDN_FACE_TABLE_H_ | ||
#define NDN_FACE_TABLE_H_ | ||
|
||
-#include <kernel_types.h> | ||
+#include "sched.h" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
diff --git a/ndn.h b/ndn.h | ||
index d8d148c7f7..47d2032301 100644 | ||
--- a/ndn.h | ||
+++ b/ndn.h | ||
@@ -20,7 +20,7 @@ | ||
#ifndef NDN_H_ | ||
#define NDN_H_ | ||
|
||
-#include <kernel_types.h> | ||
+#include "sched.h" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
-- | ||
2.29.2 | ||
|