From 0aa0890888c28cff1a2f7b15e8ccda050bce08a8 Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 24 Jan 2013 00:16:13 +0900 Subject: Named parameters for write() --- libvxi11client/perlbits/testscript.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvxi11client/perlbits/testscript.pl b/libvxi11client/perlbits/testscript.pl index 7bcfda6..f9653b6 100644 --- a/libvxi11client/perlbits/testscript.pl +++ b/libvxi11client/perlbits/testscript.pl @@ -10,7 +10,7 @@ vxi_startinterruptserver(); my $instr = vxi_open("roi", 0); $instr->vxi_lock(0); -$instr->vxi_write("*IDN?", -1, 0, 0); +$instr->vxi_write(data => "*IDN?"); my ($bytes, $buff, $reason) = $instr->vxi_read(256, 0, 0, 0); print "got " . $bytes . ";" . $buff . " reason " . $reason ."\n"; -- cgit