summaryrefslogtreecommitdiff
path: root/public/java-segfault-redux.md
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-02-09 17:28:49 -0500
committerLuke Shumaker <lukeshu@lukeshu.com>2018-02-09 17:29:55 -0500
commitfe95d9386908cd2b199778db38eefdce1d054020 (patch)
tree4aa5f12ef1c920c832efff93abf162918fba426c /public/java-segfault-redux.md
parent208b8bb7a31158fabb444931e957a2b7185bfd9f (diff)
parent46238db12b6178ce3826665a1fea180dd28b0356 (diff)
make: Update em-dashes for pandoc > 1.8.2.1
Diffstat (limited to 'public/java-segfault-redux.md')
-rw-r--r--public/java-segfault-redux.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/java-segfault-redux.md b/public/java-segfault-redux.md
index e91dcd3..6959498 100644
--- a/public/java-segfault-redux.md
+++ b/public/java-segfault-redux.md
@@ -70,10 +70,10 @@ through all of the JVM stuff to the OpenCV code, and the OpenCV stuff
is opaque to Java debuggers.
Eventually the issue lead me back into the WPICameraExtension, then
-into WPIJavaCV--there was a native pointer being stored in a Java
+into WPIJavaCV---there was a native pointer being stored in a Java
variable; Java code called the native routine to `free()` the
structure, but then tried to feed it to another routine later. This
-lead to difficulty again--tracking objects with Java debuggers was
+lead to difficulty again---tracking objects with Java debuggers was
hard because they don't expect the program to suddenly segfault; it's
Java code, Java doesn't segfault, it throws exceptions!