summaryrefslogtreecommitdiff
path: root/ham
diff options
context:
space:
mode:
Diffstat (limited to 'ham')
-rw-r--r--ham/linpsk/files/pkgsrc_fixes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ham/linpsk/files/pkgsrc_fixes.h b/ham/linpsk/files/pkgsrc_fixes.h
index d587ec35c52..3901ccc2da3 100644
--- a/ham/linpsk/files/pkgsrc_fixes.h
+++ b/ham/linpsk/files/pkgsrc_fixes.h
@@ -15,7 +15,7 @@
#ifdef __cplusplus
template <class T> typename T::reference at_replacement(T &c, const typename T::size_type &i) {
# ifdef HAVE_STD_VECTOR_AT
- return c::at(i);
+ return c.at(i);
# else
return c[i];
# endif