Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d1681c8 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Use -Werror in build/make"

parents 75cc5bf9 2a5bc9df
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
cc_binary_host {

    srcs: ["acp.c"],
    cflags: ["-Wall", "-Werror"],

    static_libs: ["libhost"],
    name: "acp",
+1 −2
Original line number Diff line number Diff line
@@ -41,10 +41,9 @@
int process(int argc, char* const argv[], unsigned int options)
{
    int retVal = 0;
    int i, cc;
    int i;
    char* stripDest = NULL;
    int stripDestLen;
    struct stat destStat;
    bool destMustBeDir = false;
    struct stat sb;

+1 −0
Original line number Diff line number Diff line
@@ -9,5 +9,6 @@ cc_binary_host {
        "files.cpp",
        "fs.cpp",
    ],
    cflags: ["-Wall", "-Werror"],
    static_libs: ["libhost"],
}
+0 −2
Original line number Diff line number Diff line
@@ -425,8 +425,6 @@ list_dir(const string& path, const FileRecord& rec,
                const vector<string>& excludes,
                vector<FileRecord>* more)
{
    int err;

    string full = path_append(rec.sourceBase, rec.sourceName);
    full = path_append(full, path);

+1 −0
Original line number Diff line number Diff line
cc_binary_host {
    name: "fs_get_stats",
    srcs: ["fs_get_stats.c"],
    cflags: ["-Wall", "-Werror"],
    shared_libs: [
        "libcutils",
        "liblog",
Loading