add a cast to help the compile figure out which function to use
This commit is contained in:
parent
1096461793
commit
30b3fa8a8b
|
@ -1125,7 +1125,7 @@ void Monitor::DumpZoneImage( const char *zone_string ) {
|
||||||
|
|
||||||
Debug( 3, "Got event %d", event_id );
|
Debug( 3, "Got event %d", event_id );
|
||||||
EventStream *stream = new EventStream();
|
EventStream *stream = new EventStream();
|
||||||
stream->setStreamStart( event_id, 1 );
|
stream->setStreamStart( event_id, (unsigned int)1 );
|
||||||
zone_image = stream->getImage();
|
zone_image = stream->getImage();
|
||||||
} else {
|
} else {
|
||||||
Error("Unable to load an event for monitor %d", id );
|
Error("Unable to load an event for monitor %d", id );
|
||||||
|
|
Loading…
Reference in New Issue