]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/kern/kern_asl.c
xnu-4903.221.2.tar.gz
[apple/xnu.git] / bsd / kern / kern_asl.c
index 3d97f81138cdcb364b7eeddce4726ee842b47044..3972cda2d4554eb30cd37f7f4e9b720133e658fa 100644 (file)
@@ -190,6 +190,13 @@ kern_asl_msg_va(int level, const char *facility, int num_pairs, va_list vargs, .
        /* Print the key-value pairs in ASL format */
        vaddlog(fmt, vargs);
 
+       /*
+        * Note: can't use os_log_with_args() here because 'fmt' is
+        * constructed on the stack i.e. doesn't come from a text
+        * section. More importantly, the newer logging system
+        * doesn't grok ASL either.
+        */
+
        return (err);
 }