Skip to content

Commit 6da7fe1

Browse files
committed
fix sbcl consumer-tag slot init warning
1 parent 9039403 commit 6da7fe1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cl-bunny.asd

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(in-package :cl-bunny.system)
77

88
(defsystem :cl-bunny
9-
:version "0.4.5"
9+
:version "0.4.6"
1010
:description "Common Lisp RabbitMQ client based on IOLib"
1111
:maintainer "Ilya Khaprov <ilya.khaprov@publitechs.com>"
1212
:author "Ilya Khaprov <ilya.khaprov@publitechs.com>"

src/message.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:initarg :channel
66
:reader message-channel)
77
(consumer-tag :type string
8-
:initform nil
8+
:initform ""
99
:initarg :consumer-tag
1010
:reader message-consumer-tag)
1111
(consumer :type consumer

0 commit comments

Comments
 (0)