Comment #14 on issue 7742 by okertanov: GCC 4.3 warnings produce errors
http://code.google.com/p/chromium/issues/detail?id=7742

ok, finally "scons: done building targets."

looks like previous errors were successfully fixed. thanks!


new regressions are:
m...@vega:~/projects/google/chromium/src/chrome$ svn diff
Index: browser/importer/firefox_profile_lock_posix.cc
===================================================================
--- browser/importer/firefox_profile_lock_posix.cc      (revision 10017)
+++ browser/importer/firefox_profile_lock_posix.cc      (working copy)
@@ -62,7 +62,7 @@
  void FirefoxProfileLock::Lock() {
    if (HasAcquired())
      return;
-  lock_fd_ = open(lock_file_.value().c_str(), O_CREAT | O_EXCL);
+  lock_fd_ = open(lock_file_.value().c_str(), O_CREAT | O_EXCL, 0644);
  }

  void FirefoxProfileLock::Unlock() {
Index: tools/convert_dict/convert_dict.cc
===================================================================
--- tools/convert_dict/convert_dict.cc  (revision 10017)
+++ tools/convert_dict/convert_dict.cc  (working copy)
@@ -119,7 +119,8 @@
      printf("ERROR writing file\n");
      return 1;
    }
-  fwrite(&serialized[0], 1, serialized.size(), out_file);
+  size_t wrc __attribute__ ((unused));
+  wrc= fwrite(&serialized[0], 1, serialized.size(), out_file);
    file_util::CloseFile(out_file);

    return 0;


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to