Skip to content
Snippets Groups Projects
Commit 17f9a915 authored by Terry Wilson's avatar Terry Wilson
Browse files

Merged revisions 320716 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r320716 | twilson | 2011-05-24 17:49:10 -0700 (Tue, 24 May 2011) | 4 lines
  
  Cast data as char * before using S_OR
  
  This is required for compiling successfully under dev mode
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@320717 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 024e4bd0
No related branches found
No related tags found
No related merge requests found
......@@ -1185,7 +1185,7 @@ static int mbl_devicestate(void *data)
int res = AST_DEVICE_INVALID;
struct mbl_pvt *pvt;
device = ast_strdupa(S_OR(data, ""));
device = ast_strdupa(S_OR((char *) data, ""));
ast_debug(1, "Checking device state for device %s\n", device);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment