From: Steven G. Kargl Date: Mon, 8 Jan 2018 20:48:26 +0000 (+0000) Subject: expr.c (gfc_check_pointer_assign): Fix typo in comment. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a4f759de239b9b524c283e5889d3c2d640b8d4b7;p=gcc.git expr.c (gfc_check_pointer_assign): Fix typo in comment. 2018-01-08 Steven G. Kargl * expr.c (gfc_check_pointer_assign): Fix typo in comment. From-SVN: r256352 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index d150f67bcfe..adb82609d9d 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2018-01-08 Steven G. Kargl + + * expr.c (gfc_check_pointer_assign): Fix typo in comment. + 2018-01-08 Paul Thomas PR fortran/83611 diff --git a/gcc/fortran/expr.c b/gcc/fortran/expr.c index a8f0f0f9016..5be8da18b05 100644 --- a/gcc/fortran/expr.c +++ b/gcc/fortran/expr.c @@ -3911,7 +3911,7 @@ gfc_check_pointer_assign (gfc_expr *lvalue, gfc_expr *rvalue) /* Error for assignments of contiguous pointers to targets which is not contiguous. Be lenient in the definition of what counts as - congiguous. */ + contiguous. */ if (lhs_attr.contiguous && !gfc_is_simply_contiguous (rvalue, false, true)) gfc_error ("Assignment to contiguous pointer from non-contiguous "