1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 09:11:47 +02:00

* `helpText' is now zero-terminated.

This commit is contained in:
Eelco Dolstra 2010-02-24 13:24:27 +00:00
parent 21b134b4e5
commit fefd467539
5 changed files with 5 additions and 5 deletions

View file

@ -21,7 +21,7 @@ typedef void (* Operation) (Strings opFlags, Strings opArgs);
void printHelp()
{
cout << string((char *) helpText, sizeof helpText);
cout << string((char *) helpText);
}