[libvirt] [PATCH 2/2] utiltest: Don't assume 'char' is always signed

2015-06-08 Thread Michal Privoznik
Not every architecture out there has 'char' signed by default. For instance, my arm box has it unsigned by default: $ gcc -dM -E - /dev/null | grep __CHAR_UNSIGNED__ #define __CHAR_UNSIGNED__ 1 Therefore, after 65c61e50 the test if failing for me. Problem is, we are trying to assign couple

Re: [libvirt] [PATCH 2/2] utiltest: Don't assume 'char' is always signed

2015-06-08 Thread Peter Krempa
On Mon, Jun 08, 2015 at 10:43:39 +0200, Michal Privoznik wrote: Not every architecture out there has 'char' signed by default. For instance, my arm box has it unsigned by default: $ gcc -dM -E - /dev/null | grep __CHAR_UNSIGNED__ #define __CHAR_UNSIGNED__ 1 Therefore, after 65c61e50