Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935585AbXLQCgp (ORCPT ); Sun, 16 Dec 2007 21:36:45 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S935372AbXLQCgF (ORCPT ); Sun, 16 Dec 2007 21:36:05 -0500 Received: from gepetto.dc.ltu.se ([130.240.42.40]:39641 "EHLO gepetto.dc.ltu.se" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935359AbXLQCgC (ORCPT ); Sun, 16 Dec 2007 21:36:02 -0500 Date: Mon, 17 Dec 2007 03:36:00 +0100 (MET) From: Richard Knutsson To: kernel-janitors@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Richard Knutsson Message-Id: <20071217023600.24944.84644.sendpatchset@thinktank.campus.ltu.se> In-Reply-To: <20071217023555.24944.62155.sendpatchset@thinktank.campus.ltu.se> References: <20071217023555.24944.62155.sendpatchset@thinktank.campus.ltu.se> Subject: [PATCH 2/3] msg.h: Convert m_ts from int to size_t. Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 921 Lines: 27 Convert m_ts ("message text size") from int to size_t. Signed-off-by: Richard Knutsson --- Remove some trailing spaces, since we are in the neighborhood. diff --git a/include/linux/msg.h b/include/linux/msg.h index 10a3d5a..7a61952 100644 --- a/include/linux/msg.h +++ b/include/linux/msg.h @@ -67,8 +67,8 @@ struct msginfo { /* one msg_msg structure for each message */ struct msg_msg { struct list_head m_list; - long m_type; - int m_ts; /* message text size */ + long m_type; + size_t m_ts; /* message text size */ struct msg_msgseg* next; void *security; /* the actual message follows immediately */ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/