From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Serge Pavlovsky To: ALT Devel discussion list In-Reply-To: <20060901033255.GP11420@localhost.localdomain> References: <20060901033255.GP11420@localhost.localdomain> Content-Type: text/plain; charset=KOI8-R Date: Fri, 01 Sep 2006 10:52:09 +0300 Message-Id: <1157097129.14886.5.camel@underdark.interexc.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-alt2pal0) Content-Transfer-Encoding: 8bit Subject: Re: [devel] invalid lvalue in assignment X-BeenThere: devel@lists.altlinux.org X-Mailman-Version: 2.1.7 Precedence: list Reply-To: ALT Devel discussion list List-Id: ALT Devel discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 07:53:25 -0000 Archived-At: List-Archive: List-Post: В Птн, 01/09/2006 в 07:32 +0400, Alexey Tourbin пишет: > int main() > { > char *p1, *p2; > p1 = (void*)p2 = 0; > return 0; > } p1 = p2 = (void*)0; p1 = p2 = 0; какая-то неполноценная модель похоже ;)