Skip to content

Commit

Permalink
Remove a couple of debug print statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic Meiser committed Feb 18, 2016
1 parent a854fd5 commit 3045b9b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,5 @@ script:
- guile -e main examples/hello-srv.scm &
- guile -e main examples/hello-client.scm
after_success:
- find . | grep gcno
- find . | grep gcda
- lcov -d guile-zmq --base-directory ./guile-zmq -c -o coverage.info
- coveralls-lcov coverage.info
1 change: 0 additions & 1 deletion examples/hello-srv.scm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
(let* ((context (zmq-init))
(sock (zmq-socket context ZMQ_REP)))
(zmq-bind sock "tcp://*:5555")
(display %load-path)
(let loop ()
(let ((recvd (zmq-recv sock)))
(display (format #f "Received: ~s\n" (utf8->string recvd)))
Expand Down

0 comments on commit 3045b9b

Please sign in to comment.