Skip to content

Commit 5fb05f3

Browse files
committed
Tools: Tune: Common: Remove trailing comma from printed blob words
The comma from line end and blob end is removed. With this change the blobs exported are identical to retrieved blobs with sof-ctl tool and e.g. can be compared directly. Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
1 parent 411246a commit 5fb05f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/tune/common/sof_alsactl_write.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ function sof_alsactl_write(fn, blob8)
2828
for i=1:n_new-1
2929
fprintf(fh, '%ld,', blob32(i));
3030
end
31-
fprintf(fh, '%ld,\n', blob32(end));
31+
fprintf(fh, '%ld\n', blob32(end));
3232
fclose(fh);
3333
end

0 commit comments

Comments
 (0)