]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
add another unused-var marker in backtrace.c for 14988
authorNick Mathewson <nickm@torproject.org>
Mon, 23 Feb 2015 16:32:04 +0000 (11:32 -0500)
committerNick Mathewson <nickm@torproject.org>
Mon, 23 Feb 2015 16:32:04 +0000 (11:32 -0500)
changes/bug14988 [new file with mode: 0644]
src/common/backtrace.c

diff --git a/changes/bug14988 b/changes/bug14988
new file mode 100644 (file)
index 0000000..67dc96e
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes (compilation):
+    - Fix a compilation warning on s390. Fixes bug 14988; bugfix on
+      0.2.5.2-alpha.
+
index 3a073a8ff575bd26679a2148979657ae6289ea1d..2a918ddd09d383e1675efebf25bad2e909f910e5 100644 (file)
@@ -80,6 +80,7 @@ clean_backtrace(void **stack, int depth, const ucontext_t *ctx)
 #else
   (void) depth;
   (void) ctx;
+  (void) stack;
 #endif
 }