Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e12d732

Browse files
committed
Fix spurious tab character
1 parent 6a61308 commit e12d732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/ecpg/preproc/ecpg.trailer

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ connection_target: opt_database_name opt_server opt_port
9090
strncmp($3 + strlen("//"), "127.0.0.1", strlen("127.0.0.1")) != 0)
9191
mmerror(PARSE_ERROR, ET_ERROR, "Unix-domain sockets only work on \"localhost\" but not on \"%s\"", $3 + strlen("//"));
9292

93-
$$ = make3_str(make3_str(mm_strdup("\""), $1, mm_strdup(":")), $3, make3_str(make3_str($4, mm_strdup("/"), $6), $7, mm_strdup("\"")));
93+
$$ = make3_str(make3_str(mm_strdup("\""), $1, mm_strdup(":")), $3, make3_str(make3_str($4, mm_strdup("/"), $6), $7, mm_strdup("\"")));
9494
}
9595
| char_variable
9696
{

0 commit comments

Comments
 (0)