To see the definers:
show procedure status;
You can change them like this:
UPDATE `mysql`.`proc` p SET definer="YournewDefiner" WHERE definer="OldDefinerShownBefore"
For example:
UPDATE `mysql`.`proc` p SET definer="user@%" WHERE definer="root@%"
Be careful, because this will change all the definers for all databases.