diff --git a/compiler/knownfun.lisp b/compiler/knownfun.lisp
index 8e876e17d91ddfe2b276ba4115cf07da4ac683e1..df58457a6cea4373e225ad63c190f9e59c5cbb1e 100644
--- a/compiler/knownfun.lisp
+++ b/compiler/knownfun.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/knownfun.lisp,v 1.11 1991/10/03 18:29:23 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/knownfun.lisp,v 1.12 1991/10/08 15:49:28 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -160,7 +160,8 @@
   (let* ((ctype (specifier-type type))
 	 (note (or note "optimize"))
 	 (info (function-info-or-lose name))
-	 (old (find ctype (function-info-transforms info) :test #'type=)))
+	 (old (find ctype (function-info-transforms info)
+		    :key #'transform-type :test #'type=)))
     (if old
 	(setf (transform-function old) fun  (transform-note old) note)
 	(push (make-transform :type ctype :function fun :note note)