Skip to content
Snippets Groups Projects
Commit 2547207c authored by deuce's avatar deuce
Browse files

Case the prompt of getpass() to a char * for cputs()

(Stops warning)
parent f9624699
Branches
Tags
No related merge requests found
......@@ -344,7 +344,7 @@ char *ciolib_getpass(const char *prompt)
if(!initialized)
initciolib(CIOLIB_AUTO_MODE);
ciolib_cputs(prompt);
ciolib_cputs((char *)prompt);
while((ch=getch())!='\n') {
switch(ch) {
case 0: /* Skip extended keys */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment