From 947079321c488024fe257b3c8518c7f9469b5636 Mon Sep 17 00:00:00 2001
From: Steven Baltakatei Sandoval <baltakatei@gmail.com>
Date: Sun, 28 Jun 2020 22:48:39 +0000
Subject: [PATCH] fix(bktemplate):Fix vbm func. Use "$*" instead of "$@" for
 errmsg

---
 unitproc/bktemplate | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unitproc/bktemplate b/unitproc/bktemplate
index b5543b3..1ffe237 100755
--- a/unitproc/bktemplate
+++ b/unitproc/bktemplate
@@ -59,7 +59,7 @@ vbm() {
 
     if [ "$OPTION_VERBOSE" = "true" ]; then
 	FUNCTION_TIME=$(date --iso-8601=ns); # Save current time in nano seconds.
-	echoerr "[$FUNCTION_TIME] ""$@"; # Display argument text.
+	echoerr "[$FUNCTION_TIME] ""$*"; # Display argument text.
     fi
 
     # End function
-- 
2.39.5