diff options
Diffstat (limited to 'src/tutorial/complex.c')
-rw-r--r-- | src/tutorial/complex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tutorial/complex.c b/src/tutorial/complex.c index c8d4cbe320f..5e8f75ae32e 100644 --- a/src/tutorial/complex.c +++ b/src/tutorial/complex.c @@ -40,7 +40,7 @@ complex_in(char *str) if (sscanf(str, " ( %lf , %lf )", &x, &y) != 2) ereport(ERROR, (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION), - errmsg("invalid input syntax for complex: \"%s\"", str))); + errmsg("invalid input syntax for complex: \"%s\"", str))); result = (Complex *) palloc(sizeof(Complex)); result->x = x; |