Convert remaining single line fprintf() to warn_report()
Convert any remaining uses of fprintf(stderr, "warning:"...
to use warn_report() instead. This helps standardise on a single
method of printing warnings to the user.
All of the warnings were changed using this command:
  find ./* -type f -exec sed -i 's|fprintf(.*".*warning[,:] |warn_report("|Ig' {} +
The #include lines and chagnes to the test Makefile were manually
updated to allow the code to compile.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Message-Id: <2c94ac3bb116cc6b8ebbcd66a254920a69665515.1503077821.git.alistair.francis@xilinx.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
			
			
This commit is contained in:
		
							parent
							
								
									ebedb37c8d
								
							
						
					
					
						commit
						05cb8ed546
					
				@ -593,7 +593,7 @@ tests/test-iov$(EXESUF): tests/test-iov.o $(test-util-obj-y)
 | 
				
			|||||||
tests/test-hbitmap$(EXESUF): tests/test-hbitmap.o $(test-util-obj-y) $(test-crypto-obj-y)
 | 
					tests/test-hbitmap$(EXESUF): tests/test-hbitmap.o $(test-util-obj-y) $(test-crypto-obj-y)
 | 
				
			||||||
tests/test-x86-cpuid$(EXESUF): tests/test-x86-cpuid.o
 | 
					tests/test-x86-cpuid$(EXESUF): tests/test-x86-cpuid.o
 | 
				
			||||||
tests/test-xbzrle$(EXESUF): tests/test-xbzrle.o migration/xbzrle.o migration/page_cache.o $(test-util-obj-y)
 | 
					tests/test-xbzrle$(EXESUF): tests/test-xbzrle.o migration/xbzrle.o migration/page_cache.o $(test-util-obj-y)
 | 
				
			||||||
tests/test-cutils$(EXESUF): tests/test-cutils.o util/cutils.o
 | 
					tests/test-cutils$(EXESUF): tests/test-cutils.o util/cutils.o $(test-util-obj-y)
 | 
				
			||||||
tests/test-int128$(EXESUF): tests/test-int128.o
 | 
					tests/test-int128$(EXESUF): tests/test-int128.o
 | 
				
			||||||
tests/rcutorture$(EXESUF): tests/rcutorture.o $(test-util-obj-y)
 | 
					tests/rcutorture$(EXESUF): tests/rcutorture.o $(test-util-obj-y)
 | 
				
			||||||
tests/test-rcu-list$(EXESUF): tests/test-rcu-list.o $(test-util-obj-y)
 | 
					tests/test-rcu-list$(EXESUF): tests/test-rcu-list.o $(test-util-obj-y)
 | 
				
			||||||
 | 
				
			|||||||
@ -30,6 +30,7 @@
 | 
				
			|||||||
#include "qemu/iov.h"
 | 
					#include "qemu/iov.h"
 | 
				
			||||||
#include "net/net.h"
 | 
					#include "net/net.h"
 | 
				
			||||||
#include "qemu/cutils.h"
 | 
					#include "qemu/cutils.h"
 | 
				
			||||||
 | 
					#include "qemu/error-report.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void strpadcpy(char *buf, int buf_size, const char *str, char pad)
 | 
					void strpadcpy(char *buf, int buf_size, const char *str, char pad)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@ -601,7 +602,7 @@ int parse_debug_env(const char *name, int max, int initial)
 | 
				
			|||||||
        return initial;
 | 
					        return initial;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    if (debug < 0 || debug > max || errno != 0) {
 | 
					    if (debug < 0 || debug > max || errno != 0) {
 | 
				
			||||||
        fprintf(stderr, "warning: %s not in [0, %d]", name, max);
 | 
					        warn_report("%s not in [0, %d]", name, max);
 | 
				
			||||||
        return initial;
 | 
					        return initial;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    return debug;
 | 
					    return debug;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user