Import of pkgsrc-2015Q3
This commit is contained in:
@@ -1,16 +1,17 @@
|
||||
$NetBSD: patch-mail_components_shell_nsMailGNOMEIntegration.cpp,v 1.1 2014/08/10 12:52:08 abs Exp $
|
||||
$NetBSD: patch-mail_components_shell_nsMailGNOMEIntegration.cpp,v 1.2 2015/07/09 15:17:34 ryoon Exp $
|
||||
|
||||
Avoid warning storing a size_t in an unsigned int on LP64
|
||||
|
||||
--- mail/components/shell/nsMailGNOMEIntegration.cpp.orig 2014-07-18 00:04:06.000000000 +0000
|
||||
--- mail/components/shell/nsMailGNOMEIntegration.cpp.orig 2015-06-08 17:40:38.000000000 +0000
|
||||
+++ mail/components/shell/nsMailGNOMEIntegration.cpp
|
||||
@@ -50,15 +50,15 @@ struct AppTypeAssociation {
|
||||
@@ -50,16 +50,16 @@ struct AppTypeAssociation {
|
||||
|
||||
static const AppTypeAssociation sAppTypes[] = {
|
||||
{
|
||||
- nsIShellService::MAIL, sMailProtocols, ArrayLength(sMailProtocols),
|
||||
+ nsIShellService::MAIL, sMailProtocols, (unsigned int)ArrayLength(sMailProtocols),
|
||||
"message/rfc822", "eml"
|
||||
"message/rfc822",
|
||||
nullptr // don't associate .eml extension, as that breaks printing those
|
||||
},
|
||||
{
|
||||
- nsIShellService::NEWS, sNewsProtocols, ArrayLength(sNewsProtocols),
|
||||
|
||||
Reference in New Issue
Block a user