A buddy of mine had this issue and hit me up to help him out, I am not very familiar with this plugin but a quick edit in:
wp-content/plugins/bp-registration-options/includes/admin.php
I changed line 19
$rs = $wpdb->get_results( $wpdb->prepare( "Select ID from ".$wpdb->base_prefix."users where user_status in (2,69)" ) );
to:
$rs = $wpdb->get_results( "Select ID from ".$wpdb->base_prefix."users where user_status in (2,69)" );
Not a fix I know but seems to have removed the error temporarily until a fix can be provided? Not sure if that helps ??