From a27b427d6930e21514358a7f33b185ddf7833e95 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Wed, 21 May 2003 03:45:29 +0000
Subject: [PATCH] Fixed parts total in "file complete" report.

---
 exec/binarydecoder.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/exec/binarydecoder.js b/exec/binarydecoder.js
index 539741f3b5..260bcb8bff 100644
--- a/exec/binarydecoder.js
+++ b/exec/binarydecoder.js
@@ -423,8 +423,8 @@ function combine_parts(list)
 	for(li=0; li<list.length; li++) {
 		if(list[li].parts!=list[li].total)
 			continue;
-		printf("File complete: %s (%lu parts)\r\n",list[li].name,list[li].parts);
-		console.pause();
+		printf("File complete: %s (%s parts)\r\n"
+			,list[li].name,list[li].parts.toString());
 	}
 }
 
-- 
GitLab