Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/audio/aylet/files/patch-ui.c
16462 views
1
--- ui.c.orig 2003-11-27 19:42:47 UTC
2
+++ ui.c
3
@@ -5,7 +5,9 @@
4
*/
5
6
#include <stdio.h>
7
+#include <stdlib.h>
8
#include <string.h>
9
+#include <stdlib.h>
10
#include <sys/types.h>
11
#include <signal.h>
12
#include <curses.h>
13
@@ -188,8 +190,8 @@ if(need_update)
14
{
15
need_update=0;
16
draw_frame();
17
- draw_status(ay_filenames[ay_file],aydata.miscstr,aydata.authorstr,
18
- ay_track+1,aydata.tracks[ay_track].namestr);
19
+ draw_status(ay_filenames[ay_file],(char *)aydata.miscstr, (char *)aydata.authorstr,
20
+ ay_track+1, (char *)aydata.tracks[ay_track].namestr);
21
}
22
23
/* update time display */
24
25