diff options
author | dvdli <dvdli@google.com> | 2021-12-15 21:09:22 +0800 |
---|---|---|
committer | dvdli <dvdli@google.com> | 2021-12-15 21:09:22 +0800 |
commit | e720c9380af22fb1eddfde3a6397f393a52cb586 (patch) | |
tree | b30b201dbba747bb416e97b52da5a45613b83b6f /WORKSPACE | |
parent | 8238437d5d5a944efa0dd08a242034f249196944 (diff) |
match the varaibles' type for 64-bit compatibility
Since the variables are snd_pcm_uframes_t and snd_pcm_uframes_t is
unsigned long, using unsigned int causes problem when running on a
64-bit binary.
Also fix the branch name of googletest.
Diffstat (limited to 'WORKSPACE')
-rw-r--r-- | WORKSPACE | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,5 +3,5 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") git_repository( name = "googletest", remote = "https://github.com/google/googletest", - branch = "master", + branch = "main", ) |