Gürkan Sengün wrote:
>
> BatMon: AppController.m:205: -[AppController getInfo]: Assertion
> `stateFile != ((void *)0)' failed.
This is unrelated to the transition, I get this error on Debian
testing with the old GNUstep. It is expected behaviour and the reason
for this is pretty obvious:
stateFile = fopen("/proc/acpi/battery/BAT0/state", "r");
assert(stateFile != NULL);
The same is done a few lines below with infoFile. I don't have
/proc/acpi at all and I don't have a laptop to test. Either way, this
doesn't seem very user-friendly. Ideally, the program should show a
dialog explaining the reason before aborting. I'll try to make it
work that way after the transition although I'm pretty sure Riccardo
could be faster.