<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- gcc/c-incpath.c.orig	2011-07-06 23:13:30.000000000 -0700
+++ gcc/c-incpath.c	2011-07-06 23:14:34.000000000 -0700
@@ -236,7 +236,7 @@ hmap_load_header_map (const char *filepa
 	  /* If it is a regular file and if it is large enough to be a header-
 	     map, see if it really is one. */
 	  if (fstat (fileno (f), &amp;f_info) == 0 &amp;&amp; S_ISREG(f_info.st_mode)
-	    &amp;&amp; f_info.st_size &gt;= sizeof(struct hmap_header_map))
+	    &amp;&amp; f_info.st_size &gt;= (off_t)sizeof(struct hmap_header_map))
 	    {
 	      unsigned   headermap_size = f_info.st_size;
 
</pre></body></html>