Minor issue, but in case anyone else runs into it...
I've been occasionally seeing this on one of my sites:
PHP Warning: Division by zero in /var/www/vhosts/1/plugins/head-cleaner/head-cleaner.php on line 2551, referer: http
Line in question is in the function _process_time():
round(($this->org_len - $this->ret_len) / $this->org_len * 100, 2) . '%' ,
Turns out this is just in calculating the savings when you have debug enabled. Turn it off and you should stop seeing the warning.