Module: sems Branch: master Commit: 1a6f148a23e2306568fbea9b5016d38b8e031d55 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=1a6f148a23e2306568fbea9b5016d38b8e031d55
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Mon Oct 17 18:08:39 2011 +0200 b/f:db_reg_agent: use long throughout the code --- apps/db_reg_agent/DBRegAgent.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/db_reg_agent/DBRegAgent.h b/apps/db_reg_agent/DBRegAgent.h index 9ea3903..dbff650 100644 --- a/apps/db_reg_agent/DBRegAgent.h +++ b/apps/db_reg_agent/DBRegAgent.h @@ -74,12 +74,12 @@ struct RegistrationActionEvent : public AmEvent { enum RegAction { Register=0, Deregister }; -RegistrationActionEvent(RegAction action, int subscriber_id) +RegistrationActionEvent(RegAction action, long subscriber_id) : AmEvent(RegistrationActionEventID), action(action), subscriber_id(subscriber_id) { } RegAction action; - int subscriber_id; + long subscriber_id; }; class DBRegAgent; _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
