By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1155
Collapse All | Expand All

(-)kpicosim/src/cassembler.cpp.ORI (-1 / +1 lines)
Lines 575-581 Link Here
575
					for( j = 31 ; j >= 0 ; j-- )
575
					for( j = 31 ; j >= 0 ; j-- )
576
		 				fprintf( outfile, "%02X", INITP[ j ][ line ] ) ;
576
		 				fprintf( outfile, "%02X", INITP[ j ][ line ] ) ;
577
			} else if ( strcmp( "name", varname ) == 0 ) {
577
			} else if ( strcmp( "name", varname ) == 0 ) {
578
				fprintf( outfile, entityName.c_str() ) ;				
578
				fprintf( outfile, "%s", entityName.c_str() ) ;				
579
			} else if ( strcmp( "begin template", varname ) == 0 ) {
579
			} else if ( strcmp( "begin template", varname ) == 0 ) {
580
				copy = true ;
580
				copy = true ;
581
			}
581
			}

Return to bug 1155