diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-24T13·24+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-24T13·24+0000 |
commit | fefd467539683e45e3682a54cefc67ead33eb346 (patch) | |
tree | f6c194c370f6b9926a85169b90f7d4bb5af4057f /src/nix-store | |
parent | 21b134b4e5d150690bc56ede1da3790705d637aa (diff) |
* `helpText' is now zero-terminated.
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/nix-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 22effc65dc77..ddf2062c21fe 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -21,7 +21,7 @@ typedef void (* Operation) (Strings opFlags, Strings opArgs); void printHelp() { - cout << string((char *) helpText, sizeof helpText); + cout << string((char *) helpText); } |