Skip to content

Commit

Permalink
Fix compilation errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Oct 5, 2024
1 parent df8d710 commit 63be0bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions td/telegram/DownloadManagerCallback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//
#include "td/telegram/DownloadManagerCallback.h"

#include "td/telegram/AuthManager.h"
#include "td/telegram/FileReferenceManager.h"
#include "td/telegram/files/FileManager.h"
#include "td/telegram/Td.h"
Expand Down
4 changes: 2 additions & 2 deletions td/telegram/Logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ vector<string> Logging::get_tags() {

Status Logging::set_tag_verbosity_level(Slice tag, int new_verbosity_level) {
if (tag.empty()) {
return Status::Error("Log tag must be non-empty")
return Status::Error("Log tag must be non-empty");
}

auto it = log_tags.find(tag);
Expand All @@ -143,7 +143,7 @@ Status Logging::set_tag_verbosity_level(Slice tag, int new_verbosity_level) {

Result<int> Logging::get_tag_verbosity_level(Slice tag) {
if (tag.empty()) {
return Status::Error("Log tag must be non-empty")
return Status::Error("Log tag must be non-empty");
}

auto it = log_tags.find(tag);
Expand Down

0 comments on commit 63be0bc

Please sign in to comment.