This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Fri Apr 26 16:27:09 2024 Delivery-date: Sun, 29 Nov 2009 01:19:52 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753534AbZK2ATe (ORCPT ); Sat, 28 Nov 2009 19:19:34 -0500 Received: from mail-iw0-f171.google.com ([209.85.223.171]:49870 "EHLO mail-iw0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753511AbZK2ATe convert rfc822-to-8bit (ORCPT ); Sat, 28 Nov 2009 19:19: Received: by iwn1 with SMTP id 1so1523391iwn.33 for ; Sat, 28 Nov 2009 16:19:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=0NVPNOSk9CLN5m878KpiyIbUMe0FBflWY57oAETVk3o=; DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=mkWyRSx0bZzwNJJiFxro311Q8XejAKA2uylrivUDr16GGb4SZv8wkjCpeMkHn09pSX PLVx2aOxOgOnI20Uj Mime-Version: 1.0 Received: by 10.231.121.93 with SMTP id g29mr4282220ibr.13.1259453980377; Sat, 28 Nov 2009 16:19:40 -0800 (PST) Date: Sun, 29 Nov 2009 08:19:40 +0800 Message-Id: Subject: [PATCH]a.out.h: Fix the format error. From: liu weni To: linux-kernel@vger.kernel.org Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-Id: X-Mailing-List: linux-kernel@vger.kernel.org ------ rm the symbol of ^L in the include/linux/a.out.h. ------ Signed-off-by: Liuwenyi Cc: linux-kernel@vger.kernel.org ------ diff --git a/include/linux/a.out.h b/include/linux/a.out.h index e86dfca..7c41cbd 100644 --- a/include/linux/a.out.h +++ b/include/linux/a.out.h @@ -162,7 +162,7 @@ enum machine_type { #if !defined (N_BSSADDR) #define N_BSSADDR(x) (N_DATADDR(x) + (x).a_data) #endif - + #if !defined (N_NLIST_DECLARED) struct nlist { union { @@ -235,7 +235,7 @@ struct nlist { /* This is output from LD. */ #define N_SETV 0x1C /* Pointer to set vector in data area. */ - + #if !defined (N_RELOCATION_INFO_DECLARED) /* This structure describes a single relocation to be performed. The text-relocation section of the file is a vector of these structures, -- 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/