diff options
-rw-r--r-- | lldb/test/python_api/watchpoint/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/python_api/watchpoint/main.c b/lldb/test/python_api/watchpoint/main.c index 622e7467929..4753edfba99 100644 --- a/lldb/test/python_api/watchpoint/main.c +++ b/lldb/test/python_api/watchpoint/main.c @@ -15,7 +15,7 @@ int main(int argc, char** argv) { int local = 0; printf("&global=%p\n", &global); printf("about to write to 'global'...\n"); // Set break point at this line. - // When stopped, watch 'global' for write. + // When stopped, watch 'global' for read&write. global = 20; local += argc; ++local; |