From cb4ba24089b6e480d5ffd6b14a0b4f22670362d4 Mon Sep 17 00:00:00 2001 From: uz Date: Wed, 4 Jan 2012 21:44:46 +0000 Subject: [PATCH] Fixed copy & paste errors in comments. git-svn-id: svn://svn.cc65.org/cc65/trunk@5379 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ld65/o65.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ld65/o65.c b/src/ld65/o65.c index 1c8eb6cc1..6931d3d6c 100644 --- a/src/ld65/o65.c +++ b/src/ld65/o65.c @@ -846,7 +846,7 @@ static void O65WriteBssSeg (O65Desc* D) /* Initialize variables */ D->CurReloc = 0; - /* Dump all data segments */ + /* Dump all bss segments */ O65WriteSeg (D, D->BssSeg, D->BssCount, 0); /* Set the size of the segment */ @@ -863,7 +863,7 @@ static void O65WriteZPSeg (O65Desc* D) /* Initialize variables */ D->CurReloc = 0; - /* Dump all data segments */ + /* Dump all zp segments */ O65WriteSeg (D, D->ZPSeg, D->ZPCount, 0); /* Set the size of the segment */ -- 2.39.5