page: print readimage error string
This commit is contained in:
parent
2423c5a940
commit
681363caae
1 changed files with 2 additions and 1 deletions
|
@ -772,7 +772,8 @@ loadpage(Page *p)
|
||||||
if(p->open && p->image == nil){
|
if(p->open && p->image == nil){
|
||||||
if((fd = openpage(p)) >= 0){
|
if((fd = openpage(p)) >= 0){
|
||||||
pagegen++;
|
pagegen++;
|
||||||
p->image = readimage(display, fd, 1);
|
if((p->image = readimage(display, fd, 1)) == nil)
|
||||||
|
fprint(2, "readimage: %r\n");
|
||||||
close(fd);
|
close(fd);
|
||||||
}
|
}
|
||||||
if(p->image == nil)
|
if(p->image == nil)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue