[epiphany/mcatanzaro/error.html] Avoid using lone % in format template



commit c62e3a91ad9a95fd40020e1f7c3686c8d1c7d73c
Author: Michael Catanzaro <mcatanzaro igalia com>
Date:   Wed Dec 19 11:09:49 2018 -0600

    Avoid using lone % in format template
    
    This may or may not be causing crashes in qemu-emulated ppc64le. Who
    knows. But it's probably not legal? Seems safest to avoid, at any rate.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=1660841

 src/resources/error.html | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
---
diff --git a/src/resources/error.html b/src/resources/error.html
index f0ed9fb7f..f2f8a50a4 100644
--- a/src/resources/error.html
+++ b/src/resources/error.html
@@ -18,7 +18,11 @@
   You should have received a copy of the GNU General Public License
   along with Epiphany.  If not, see <http://www.gnu.org/licenses/>.
 -->
-<!-- Keep in mind that this file is a format template. Each raw % has to be %%. -->
+<!--
+     Keep in mind that this file is a format template.
+     Each raw percent sign has to be written as %%.
+     Don't mess it up!
+  -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="%s" lang="%s" dir="%s">
 <head>
   <meta http-equiv="content-type" content="text/html; charset=utf-8" />


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]