Fix missing echo for building example/jsonfindptrs
diff --git a/build-example.sh b/build-example.sh
index c1d9c82..d687128 100755
--- a/build-example.sh
+++ b/build-example.sh
@@ -57,6 +57,7 @@
     echo "Building gen/bin/example-$f"
     $CC  -O3            example/$f/*.c  -o gen/bin/example-$f
   elif [ $f = "jsonfindptrs" ]; then
+    echo "Building gen/bin/example-$f"
     $CXX -O3 -std=c++17 example/$f/*.cc -o gen/bin/example-$f
   elif [ -e example/$f/*.cc ]; then
     echo "Building gen/bin/example-$f"