Changeset 5646
- Timestamp:
- Sep 8, 2017 11:16:09 AM (7 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pjlib-test/exception.c
r5060 r5646 169 169 switch (PJ_GET_EXCEPTION()) { 170 170 case ID_1: 171 if (!rc) rc = -30; break; 171 if (!rc) rc = -30; 172 break; 172 173 case ID_2: 173 if (!rc) rc = 0; break; 174 if (!rc) rc = 0; 175 break; 174 176 default: 175 177 if (!rc) rc = -40; -
pjproject/trunk/pjmedia/src/pjmedia-audiodev/alsa_dev.c
r5616 r5646 939 939 940 940 if (cap==PJMEDIA_AUD_DEV_CAP_OUTPUT_VOLUME_SETTING && af->pb_mixer_name) { 941 int result;942 941 pj_ssize_t min, max; 943 942 snd_mixer_t *handle; -
pjproject/trunk/pjsip-apps/src/samples/pjsua2_demo.cpp
r5467 r5646 129 129 acc_cfg.sipConfig.authCreds.push_back( AuthCredInfo("digest", "*", 130 130 "test1", 0, "test1") ); 131 std:: auto_ptr<MyAccount> acc(new MyAccount);131 std::unique_ptr<MyAccount> acc(new MyAccount); 132 132 acc->create(acc_cfg); 133 133 … … 308 308 AccountConfig acc_cfg; 309 309 acc_cfg.idUri = "sip:localhost"; 310 std:: auto_ptr<MyAccount> acc(new MyAccount);310 std::unique_ptr<MyAccount> acc(new MyAccount); 311 311 acc->create(acc_cfg); 312 312
Note: See TracChangeset
for help on using the changeset viewer.