Changed &optional to &key.
diff --git a/gravatar.lisp b/gravatar.lisp
index acedcbc..c43b57c 100644
--- a/gravatar.lisp
+++ b/gravatar.lisp
@@ -45,7 +45,7 @@
(babel:octets-to-string (drakma:http-request (generate-profile-url email
nil)))))
-(defun qr-code-url (email &optional size)
+(defun qr-code-url (email &key size)
(generate-profile-url email
:qr
(when size `(("s" . ,(format nil "~d" size))))))