Skip to content

Commit e1b2513

Browse files
Fix space in a wrong place on user agent customization
1 parent 5962b7a commit e1b2513

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aws-cpp-sdk-core/source/client/ClientConfiguration.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Aws::String ComputeUserAgentString(ClientConfiguration const * const pConfig)
9696
#if defined(AWS_USER_AGENT_CUSTOMIZATION)
9797
#define XSTR(V) STR(V)
9898
#define STR(V) #V
99-
ss << FilterUserAgentToken(" " XSTR(AWS_USER_AGENT_CUSTOMIZATION));
99+
ss << " " << FilterUserAgentToken(XSTR(AWS_USER_AGENT_CUSTOMIZATION));
100100
#undef STR
101101
#undef XSTR
102102
#endif

0 commit comments

Comments
 (0)