diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-11-10 20:38:06 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-11-10 20:38:06 +0000 |
commit | cfde1cceb2c9c460036fd512e3bac1d579c74af6 (patch) | |
tree | c396c99a28efbdab430ce8eb6fbcb8c25367ebf5 /unmime.c | |
parent | 4f3f4551ff4f97d6278956fc525a78c1fe0866fa (diff) | |
download | fetchmail-cfde1cceb2c9c460036fd512e3bac1d579c74af6.tar.gz fetchmail-cfde1cceb2c9c460036fd512e3bac1d579c74af6.tar.bz2 fetchmail-cfde1cceb2c9c460036fd512e3bac1d579c74af6.zip |
Misc. sprintf and pid_t fixes.
svn path=/trunk/; revision=4000
Diffstat (limited to 'unmime.c')
-rw-r--r-- | unmime.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -669,9 +669,9 @@ int main(int argc, char *argv[]) char fnam[100]; pid = getpid(); - sprintf(fnam, "/tmp/i_unmime.%x", pid); + sprintf(fnam, "/tmp/i_unmime.%lx", (long)pid); fd_orig = fopen(fnam, "w"); - sprintf(fnam, "/tmp/o_unmime.%x", pid); + sprintf(fnam, "/tmp/o_unmime.%lx", (long)pid); fd_conv = fopen(fnam, "w"); #endif |