Author: Andreas Beckmann <anbe@debian.org>
Description: fix ambiguous initialization
 on 32-bit platforms with 64-bit time_t (armel, armhf)

--- a/lib/plpdirent.cc
+++ b/lib/plpdirent.cc
@@ -41,7 +41,7 @@ operator[](int idx) {
 }
 
 PlpDirent::PlpDirent()
-    : size(0), attr(0), name(""), time(0L), attrstr("") {
+    : size(0), attr(0), name(""), time(time_t(0)), attrstr("") {
 }
 
 PlpDirent::PlpDirent(const PlpDirent &e) {
