소스 검색

fix for gcc 4.6

Julius Pfrommer 10 년 전
부모
커밋
88557ea261
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/client/ua_client.c

+ 1 - 1
src/client/ua_client.c

@@ -28,7 +28,7 @@ struct UA_Client {
     UA_ClientConfig config;
 };
 
-const UA_ClientConfig UA_ClientConfig_standard = (UA_ClientConfig) {.timeout = 500 };
+const UA_ClientConfig UA_ClientConfig_standard = { 500 };
 
 UA_Client * UA_Client_new(UA_ClientConfig config) {
     UA_Client *client = UA_malloc(sizeof(UA_Client));