mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-20 03:25:47 +00:00
[ncdirect_stream] kill unused variable warnings
This commit is contained in:
parent
429ca673d3
commit
94839c2958
@ -1115,3 +1115,19 @@ int ncdirect_check_pixel_support(ncdirect* n){
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ncdirect_stream(ncdirect* nc, const char* filename, float timescale,
|
||||
streamcb streamer, const struct ncvisual_options* vopts,
|
||||
void* curry){
|
||||
(void)nc;
|
||||
(void)timescale;
|
||||
(void)streamer;
|
||||
(void)vopts;
|
||||
(void)curry;
|
||||
ncvisual* ncv = ncvisual_from_file(filename);
|
||||
if(ncv == NULL){
|
||||
return -1;
|
||||
}
|
||||
// FIXME
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user