aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32fns.c
diff options
context:
space:
mode:
authorKen Raeburn <[email protected]>2002-07-16 15:49:59 +0000
committerKen Raeburn <[email protected]>2002-07-16 15:49:59 +0000
commit7960d5abc2d6b6ea3aaf3f0113febc05aaba9671 (patch)
tree1a72fc981fc2f040a51fce17a2ecd7fcedaa1426 /src/w32fns.c
parent5d69fe10aec5b09b5b38de0434516e1e755148fc (diff)
* w32fns.c (validate_x_resource_name): Use SSET.
Diffstat (limited to 'src/w32fns.c')
-rw-r--r--src/w32fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index ea865a7a0a..9e1602e8d6 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -3049,7 +3049,7 @@ validate_x_resource_name ()
|| (c >= 'A' && c <= 'Z')
|| (c >= '0' && c <= '9')
|| c == '-' || c == '_'))
- SREF (new, i) = '_';
+ SSET (new, i, '_');
}
}