mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
16 lines
289 B
Plaintext
16 lines
289 B
Plaintext
$NetBSD: patch-uudecode_c,v 1.1 2011/08/01 04:08:51 dholland Exp $
|
|
|
|
Fix broken build with clang.
|
|
|
|
--- uudecode.c~ 2003-07-21 20:46:37.000000000 +0000
|
|
+++ uudecode.c
|
|
@@ -845,7 +845,7 @@ int uudecodeline(char *line, FILE *outfi
|
|
}
|
|
line += 4;
|
|
}
|
|
- return;
|
|
+ return 0;
|
|
}
|
|
|
|
|