Fix issue again with wrong macro on error.
This commit is contained in:
		
							parent
							
								
									bd52b1f8f5
								
							
						
					
					
						commit
						9fab867333
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -610,9 +610,9 @@ static void _error(int class, char *fn, unsigned int ln, char* fmt, va_list ap)
 | 
			
		|||
#endif	/* LINT */
 | 
			
		||||
	
 | 
			
		||||
	if (fn)
 | 
			
		||||
		fprint(STDERR, "\"%s\", line %u: ", fn, ln);
 | 
			
		||||
		fprint(ERROUT, "\"%s\", line %u: ", fn, ln);
 | 
			
		||||
	if (remark)
 | 
			
		||||
		fprint(STDERR, "%s ", remark);
 | 
			
		||||
	doprnt(STDERR, fmt, ap);		/* contents of error */
 | 
			
		||||
	fprint(STDERR, "\n");
 | 
			
		||||
		fprint(ERROUT, "%s ", remark);
 | 
			
		||||
	doprnt(ERROUT, fmt, ap);		/* contents of error */
 | 
			
		||||
	fprint(ERROUT, "\n");
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue