From 9a1510a643a0455594cefc0291099ce77ac4f398 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Fri, 28 Jul 2023 21:02:22 +0200 Subject: [PATCH] playvid: correctly convert pathname to native namestring --- scripts/playvid.ros | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/playvid.ros b/scripts/playvid.ros index 57818e3..5416c6e 100755 --- a/scripts/playvid.ros +++ b/scripts/playvid.ros @@ -17,7 +17,7 @@ exec ros -Q -- $0 "$@" (nth (random (length dir) (make-random-state t)) dir)))) (basename (pathname-name vidfile))) (format t "playing video: ~a~%" basename) - (uiop:run-program (list "mpv" (file-namestring vidfile)) + (uiop:run-program (list "mpv" (uiop:native-namestring vidfile)) :input :interactive :error-output :interactive :output :interactive)