blob: 51ed1a9364d4c2bebb7c4660443fcd65d728d488 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-as,v 1.3 2001/05/10 21:00:34 dmcmahill Exp $
fix type mismatch on 64 bit machines
--- faxd/FaxModem.c++.orig Mon Feb 5 01:32:57 2001
+++ faxd/FaxModem.c++ Thu May 10 16:48:15 2001
@@ -815,5 +815,5 @@
void
-FaxModem::correctPhaseCData(u_char* buf, u_long* pBufSize,
+FaxModem::correctPhaseCData(u_char* buf, uint32* pBufSize,
u_int fillorder, const Class2Params& params)
{
|