aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Sebor <msebor@redhat.com>2022-02-02 17:47:52 -0700
committerMartin Sebor <msebor@redhat.com>2022-02-02 17:47:52 -0700
commitdc898b2ba5c50a7311bc3137f0987a7831362ed8 (patch)
treea9925ee36c59baeaa2c5a9dee6e742bdcfd62eba
parent88944e131491d60ede2517c0ea2c9a08f2e2863e (diff)
downloadgcc-dc898b2ba5c50a7311bc3137f0987a7831362ed8.zip
gcc-dc898b2ba5c50a7311bc3137f0987a7831362ed8.tar.gz
gcc-dc898b2ba5c50a7311bc3137f0987a7831362ed8.tar.bz2
Correct typos in -Wuse-after-free description.
gcc/ChangeLog: * common.opt (-Wuse-after-free): Correct typos.
-rw-r--r--gcc/common.opt4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/common.opt b/gcc/common.opt
index d923327..c21e527 100644
--- a/gcc/common.opt
+++ b/gcc/common.opt
@@ -550,11 +550,11 @@ Warn if an array is accessed out of bounds.
Wuse-after-free
Common Var(warn_use_after_free) Warning
-Warn for uses of pointers to deallocated strorage.
+Warn for uses of pointers to deallocated storage.
Wuse-after-free=
Common Joined RejectNegative UInteger Var(warn_use_after_free) Warning IntegerRange(0, 3)
-Warn for uses of pointers to deallocated strorage.
+Warn for uses of pointers to deallocated storage.
Wattributes
Common Var(warn_attributes) Init(1) Warning