summaryrefslogtreecommitdiff
path: root/perf
diff options
context:
space:
mode:
authormalosek <malosek@fastmq.com>2009-09-16 14:55:11 +0200
committermalosek <malosek@fastmq.com>2009-09-16 14:55:11 +0200
commit3b2c3cae095abf9b61cd72cf19f053071a8c614a (patch)
tree4d6396c9ec15cb589b6bba9211eed9377be1b468 /perf
parent3534732c0614a764731fbea2431247068fa63330 (diff)
setsockopt cleanup in rbzmq
Diffstat (limited to 'perf')
-rw-r--r--perf/ruby/local_thr.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/perf/ruby/local_thr.rb b/perf/ruby/local_thr.rb
index db14cf2..b916f2d 100644
--- a/perf/ruby/local_thr.rb
+++ b/perf/ruby/local_thr.rb
@@ -29,7 +29,7 @@ message_count = ARGV[2].to_i
ctx = Context.new(1, 1)
s = Socket.new(ctx, SUB);
-s.setsockopt (SUBSCRIBE, "*");
+s.setsockopt(SUBSCRIBE, "*");
# Add your socket options here.
# For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM.