diff --git a/lisp/ob-C.el b/lisp/ob-C.el index 4c2d1bab1..bbd05255f 100644 --- a/lisp/ob-C.el +++ b/lisp/ob-C.el @@ -264,7 +264,7 @@ FORMAT can be either a format string or a function which is called with VAL." (when (and type (not (string= type-name tmp-type-name))) (if (and (member type-name '("int" "double" "int32_t")) (member tmp-type-name '("int" "double" "int32_t"))) - (setq tmp-type '("double" "" "%f")) + (setq tmp-type '("double" "%f")) (error "Only homogeneous lists are supported by C. You can not mix %s and %s" type-name tmp-type-name)))