We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e100f20 commit 2fd2042Copy full SHA for 2fd2042
src/libmongoc/src/mongoc/mongoc-timeout.c
@@ -20,7 +20,7 @@
20
typedef struct _mongoc_timeout_t {
21
bool is_set;
22
int64_t timeout_ms;
23
-} mongoc_timeout_t;
+};
24
25
int64_t
26
mongoc_timeout_get_timeout_ms (const mongoc_timeout_t *timeout)
src/libmongoc/tests/test-mongoc-versioned-api.c
@@ -47,7 +47,7 @@ _test_mongoc_server_api_setters (void)
47
{
48
mongoc_server_api_t *api = mongoc_server_api_new (MONGOC_SERVER_API_V1);
49
50
- BSON_ASSERT (api->version = MONGOC_SERVER_API_V1);
+ BSON_ASSERT (api->version == MONGOC_SERVER_API_V1);
51
BSON_ASSERT (!api->strict_set);
52
BSON_ASSERT (!api->deprecation_errors_set);
53
BSON_ASSERT (!api->strict);
0 commit comments