| Index: speech_synthesizer_service.cc
|
| diff --git a/speech_synthesizer_service.cc b/speech_synthesizer_service.cc
|
| index 3271fcd6b71aba2485f1c588f7609acef3c28f96..9ff7197dca68977101072697e4704926e62e5d2c 100644
|
| --- a/speech_synthesizer_service.cc
|
| +++ b/speech_synthesizer_service.cc
|
| @@ -122,7 +122,7 @@ gboolean SpeechSynthesizerService::AddProperties(gchar *properties) {
|
| }
|
| string token = "";
|
| while(1) {
|
| - int sep = props.find(";");
|
| + unsigned int sep = props.find(";");
|
| if (sep == string::npos) {
|
| token = props;
|
| } else {
|
|
|