瀏覽代碼

Fix filename variable typo when loading

Alois Mahdal 9 年之前
父節點
當前提交
38988bd4c9
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      libexec/saturnin-clip

+ 1
- 1
libexec/saturnin-clip 查看文件

@@ -59,7 +59,7 @@ lsclips() {
59 59
 
60 60
 load_clip() {
61 61
     local clipname=$1
62
-    local fname=$(saturnin clip ls | saturnin dmenu | cut -d\   -f 1)
62
+    local name=$(saturnin clip ls | saturnin dmenu | cut -d\   -f 1)
63 63
     cat $STORAGE_DIR/$name | xclip -i -selection $clipname
64 64
 }
65 65