mirror of
				https://github.com/michaelrsweet/pdfio.git
				synced 2025-10-31 18:35:45 +01:00 
			
		
		
		
	Resolve clang warning.
This commit is contained in:
		| @@ -421,9 +421,9 @@ _pdfioTokenRead(_pdfio_token_t *tb,	// I - Token buffer/stack | |||||||
| 		return (false); | 		return (false); | ||||||
| 	      } | 	      } | ||||||
| 	      else if (isdigit(tch)) | 	      else if (isdigit(tch)) | ||||||
| 		ch = (char)((ch << 4) | (tch - '0')); | 		ch = ((ch & 255) << 4) | (tch - '0'); | ||||||
| 	      else | 	      else | ||||||
| 		ch = (char)((ch << 4) | (tolower(tch) - 'a' + 10)); | 		ch = ((ch & 255) << 4) | (tolower(tch) - 'a' + 10); | ||||||
| 	    } | 	    } | ||||||
| 	  } | 	  } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user