summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libvxi11client/perlbits/Client.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvxi11client/perlbits/Client.pm b/libvxi11client/perlbits/Client.pm
index c58ed19..cf691bb 100644
--- a/libvxi11client/perlbits/Client.pm
+++ b/libvxi11client/perlbits/Client.pm
@@ -199,7 +199,7 @@ VXI11::Client - Perl module for interfacing with VXI-11 networked test and measu
print "got " . $bytes . ";" . $buff . " reason " . $reason ."\n";
my ($error, $statusbyte) = $instr->vxi_readstatusbyte();
- printf "status byte is " . $statusbyte . "\n";
+ print "status byte is " . $statusbyte . "\n";
$instr->vxi_create_intr_chan();
$instr->vxi_enable_srq("myhandle");
@@ -366,7 +366,7 @@ The only exceptions to this are the read and write methods
my $instr = vxi_open( address => "192.168.0.62" );
$instr->vxi_write("*idn?");
my ( $bytes, $idn, $reason ) = $instr->vxi_read();
- printf "This instrument is: $idn\n";
+ print "This instrument is: $idn\n";
$instr->vxi_close();
=head2 INTERACTIVE CLIENT #1