Merge pull request #325 from flaviommedeiros/master
Avoiding directives that split up parts of statements.
This commit is contained in:
		@@ -413,16 +413,17 @@ static void inst_binary_name(char *binfname)
 | 
			
		||||
  size_t i, len;
 | 
			
		||||
  char *binptr;
 | 
			
		||||
  char newpath[512], newname[512];
 | 
			
		||||
  int slashchar;
 | 
			
		||||
 | 
			
		||||
  binptr = NULL;
 | 
			
		||||
  len = strlen(binfname);
 | 
			
		||||
  for (i = len - 1; i < len; i--)
 | 
			
		||||
  {
 | 
			
		||||
    if (binfname[i] == '/'
 | 
			
		||||
    slashchar = binfname[i] == '/';
 | 
			
		||||
#if defined WIN32 || defined _WIN32
 | 
			
		||||
      || binfname[i] == '\\'
 | 
			
		||||
    slashchar = slashchar || binfname[i] == '\\';
 | 
			
		||||
#endif
 | 
			
		||||
      )
 | 
			
		||||
    if (slashchar)
 | 
			
		||||
    {
 | 
			
		||||
      binptr = &binfname[i + 1];
 | 
			
		||||
      break;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user