Skip to content

Remove newline in window title (Issue #16) #17

Merged
merged 2 commits into from
Feb 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ This release was tested against MarIuX.

## Revision History

### Version 3.0p11 - Jan 23 2019
- remove newline in window title
- Niclas Hofmann, `niclas@molgen.mpg.de`

### Version 3.0p10 - Jan 23 2019
- fix integer overflow
- Niclas Hofmann, `niclas@molgen.mpg.de`
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define XDU_VERSION "3.0p10"
#define XDU_VERSION "3.0p11"
2 changes: 1 addition & 1 deletion xdu.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ makenode(char* name, long long size)
struct node* np;

np = (struct node*)calloc(1, sizeof(struct node));
np->name = strdup(name);
np->name = name;
np->size = size;
np->num = nnodes;
nnodes++;
Expand Down
2 changes: 1 addition & 1 deletion xwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ int xsetup(int* argcp, char** argv)
* Create the top level Widget
*/
n = 0;
XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('h' for help)\n");
XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('h' for help)");
n++;
toplevel = XtAppInitialize(&app_con, "XDu", options, XtNumber(options), argcp,
argv, fallback_resources, args, n);
Expand Down