Files
pkgsrc-ng/cad/kicad/patches/patch-pcbnew_class_track.cpp
2016-11-18 22:39:22 +01:00

16 lines
534 B
C++

$NetBSD: patch-pcbnew_class_track.cpp,v 1.3 2016/09/08 09:32:28 bouyer Exp $
64bit time_t fix
Reported upstream as bug id 1280901
--- pcbnew/class_track.cpp.orig 2015-12-11 18:02:48.000000000 +0100
+++ pcbnew/class_track.cpp 2015-12-11 18:03:02.000000000 +0100
@@ -143,7 +143,7 @@
}
text.Printf( _( "Zone (%08lX) [%s] on %s" ),
- m_TimeStamp, GetChars( nettxt ), GetChars( GetLayerName() ) );
+ (u_long)m_TimeStamp, GetChars( nettxt ), GetChars( GetLayerName() ) );
return text;
}