861ac185a6
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
14 lines
515 B
Diff
14 lines
515 B
Diff
diff --git src/libutil/PosixMessageQueue.h src/libutil/PosixMessageQueue.h
|
|
index 05da300..c331c70 100644
|
|
--- a/src/libutil/PosixMessageQueue.h
|
|
+++ b/src/libutil/PosixMessageQueue.h
|
|
@@ -115,7 +115,7 @@ public:
|
|
|
|
private:
|
|
bool doOpen(enum eDirection t, int, enum eBlocking);
|
|
- static void notifyCallbackStatic(sigval_t t) {
|
|
+ static void notifyCallbackStatic(union sigval t) {
|
|
PosixMessageQueue *obj;
|
|
obj = static_cast<PosixMessageQueue *>(t.sival_ptr);
|
|
obj->notifyCallback();
|
|
|