diff options
author | Simon Marlow <simonmar@microsoft.com> | 2008-05-19 12:51:01 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2008-05-19 12:51:01 +0000 |
commit | f0a352756958c7c841da25143f7fdea610ab9a21 (patch) | |
tree | c366757ff5d7021a8cd18a2c773073fa21ffa144 /utils/hp2ps | |
parent | 90b9566607ef837329434657c8fabc4bdffdf1af (diff) | |
download | haskell-f0a352756958c7c841da25143f7fdea610ab9a21.tar.gz |
FIX #1955: confusion between .exe.hp and .hp suffixes for heap profiles
Now we use <prog>.hp and <prog>.prof consistently.
Diffstat (limited to 'utils/hp2ps')
-rw-r--r-- | utils/hp2ps/Main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/utils/hp2ps/Main.c b/utils/hp2ps/Main.c index 53f010ba1e..947ff46731 100644 --- a/utils/hp2ps/Main.c +++ b/utils/hp2ps/Main.c @@ -147,7 +147,6 @@ nextarg: ; DropSuffix(pathName, ".hp"); #if defined(_MSC_VER) || defined(__MINGW32__) || defined(_WIN32) DropSuffix(pathName, ".exe"); - pathName = copystring2(pathName,".exe"); #endif baseName = copystring(Basename(pathName)); |