diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-15 18:24:44 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-15 18:24:44 +0000 |
commit | 8eba1e0b81061e8513cfdc2313b7f70c481dfc4f (patch) | |
tree | 236ec988d9ca0b761d825730ab727b56826e095e /usr.bin | |
parent | 4bad108b2004b3938a7499b5d992b16ab209ab61 (diff) |
no need for one of the volatile
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/worklist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/worklist.h b/usr.bin/cvs/worklist.h index 2b553ec9d89..e73a14f59c4 100644 --- a/usr.bin/cvs/worklist.h +++ b/usr.bin/cvs/worklist.h @@ -1,4 +1,4 @@ -/* $OpenBSD: worklist.h,v 1.2 2006/03/15 13:30:48 niallo Exp $ */ +/* $OpenBSD: worklist.h,v 1.3 2006/03/15 18:24:43 deraadt Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -28,7 +28,7 @@ #define WORKLIST_H struct cvs_worklist { - volatile char wkl_path[MAXPATHLEN]; + char wkl_path[MAXPATHLEN]; volatile SLIST_ENTRY(cvs_worklist) wkl_list; }; |