Commit 48cbefa7d941b8f612d6503e937f4c3f3e4bc8b1
1 parent
5c3c9c8f
Exists in
master
and in
5 other branches
Removendo erros detectados pelo OBS
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
src/libpw3270cpp/remote.cc
src/libpw3270cpp/service.cc
| ... | ... | @@ -477,12 +477,12 @@ |
| 477 | 477 | |
| 478 | 478 | virtual const char * asc2ebc(unsigned char *str, int sz = -1) |
| 479 | 479 | { |
| 480 | - return str; | |
| 480 | + return (const char *) str; | |
| 481 | 481 | } |
| 482 | 482 | |
| 483 | 483 | virtual const char * ebc2asc(unsigned char *str, int sz = -1) |
| 484 | 484 | { |
| 485 | - return str; | |
| 485 | + return (const char *) str; | |
| 486 | 486 | } |
| 487 | 487 | |
| 488 | 488 | virtual int set_cursor_position(int row, int col) | ... | ... |