diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-27 07:18:04 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-27 07:18:04 +0200 |
| commit | d3586ad2b2b140435055c349393154ae7cfffaea (patch) | |
| tree | de03bb45cb75b138d71f54b105e695672b7d802c /internal/askcli/command_urgency.go | |
| parent | f146fbc4cc25bcdeab19a0c1055c839776cebff4 (diff) | |
task 3a4c0f14-16ad-487f-af7c-bd99ee6464e6: use pointer Dispatcher receivers
Diffstat (limited to 'internal/askcli/command_urgency.go')
| -rw-r--r-- | internal/askcli/command_urgency.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/askcli/command_urgency.go b/internal/askcli/command_urgency.go index c1ec24c..a6f545c 100644 --- a/internal/askcli/command_urgency.go +++ b/internal/askcli/command_urgency.go @@ -9,7 +9,7 @@ import ( "sort" ) -func (d Dispatcher) handleUrgency(ctx context.Context, stdout, stderr io.Writer) (int, error) { +func (d *Dispatcher) handleUrgency(ctx context.Context, stdout, stderr io.Writer) (int, error) { var outBuf bytes.Buffer code, err := d.runner.Run(ctx, []string{"export"}, nil, &outBuf, stderr) if code != 0 { |
