the boot animation is back! it broke in a recent check-in
diff --git a/cmds/bootanimation/BootAnimation.cpp b/cmds/bootanimation/BootAnimation.cpp
index c8c142d..834a664 100644
--- a/cmds/bootanimation/BootAnimation.cpp
+++ b/cmds/bootanimation/BootAnimation.cpp
@@ -63,7 +63,7 @@
 void BootAnimation::onFirstRef() {
     status_t err = mSession->linkToComposerDeath(this);
     LOGE_IF(err, "linkToComposerDeath failed (%s) ", strerror(-err));
-    if (err != NO_ERROR) {
+    if (err == NO_ERROR) {
         run("BootAnimation", PRIORITY_DISPLAY);
     }
 }