1 /* $NetBSD: msg_135.c,v 1.5 2021/02/28 01:20:54 rillig Exp $ */ 2 # 3 "msg_135.c" 3 4 // Test for message: converting '%s' to '%s' may cause alignment problem [135] 5 6 /* lint1-extra-flags: -h */ 7 8 unsigned 9 read_uint(const unsigned char **pp) 10 { 11 unsigned val; 12 13 val = *(const unsigned *)(*pp); /* expect: 135 */ 14 pp += sizeof(unsigned); 15 return val; 16 } 17